diff options
author | Karel Kočí <cynerd@email.cz> | 2022-06-22 15:54:04 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-06-22 15:55:14 +0200 |
commit | 5ec374830995b705cae116ea14e6190f8c4d3a29 (patch) | |
tree | a59c40d6b8bd95e86df6a0857ff10cbca506aabe /pkgs/python | |
parent | 5679c4ad2745fbd62a40be8beaa5c68b20c0a6bf (diff) | |
download | nixos-personal-5ec374830995b705cae116ea14e6190f8c4d3a29.tar.gz nixos-personal-5ec374830995b705cae116ea14e6190f8c4d3a29.tar.bz2 nixos-personal-5ec374830995b705cae116ea14e6190f8c4d3a29.zip |
Add sdcv and stardict dictionaries
Diffstat (limited to 'pkgs/python')
-rw-r--r-- | pkgs/python/notify-send.nix | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/python/notify-send.nix b/pkgs/python/notify-send.nix deleted file mode 100644 index 8dfe953..0000000 --- a/pkgs/python/notify-send.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ lib, buildPythonPackage, fetchPypi }: - -buildPythonPackage rec { - pname = "notify-send"; - version = "0.0.20"; - - src = fetchPypi { - inherit pname version; - sha256 = "6fddbc5b201728984d2de809959bb6aecf9abb0de5cfa55c7324ca6f48f41e03"; - }; - - meta = with lib; { - description = "Notify send"; - homepage = "https://pypi.org/project/notify-send"; - license = licenses.gpl3; - }; -} |