diff options
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/python-packages/default.nix | 1 | ||||
-rw-r--r-- | pkgs/python-packages/pymilter.nix | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/python-packages/default.nix b/pkgs/python-packages/default.nix index 747bbe62..2616d64b 100644 --- a/pkgs/python-packages/default.nix +++ b/pkgs/python-packages/default.nix | |||
@@ -3,4 +3,5 @@ | |||
3 | apprise = callPackage ./apprise { inherit mylibs; pythonPackages = python.pkgs; }; | 3 | apprise = callPackage ./apprise { inherit mylibs; pythonPackages = python.pkgs; }; |
4 | buildbot-plugins = callPackage ./buildbot/plugins { inherit mylibs python; }; | 4 | buildbot-plugins = callPackage ./buildbot/plugins { inherit mylibs python; }; |
5 | wokkel = callPackage ./wokkel.nix { pythonPackages = python.pkgs; }; | 5 | wokkel = callPackage ./wokkel.nix { pythonPackages = python.pkgs; }; |
6 | pymilter = callPackage ./pymilter.nix { pythonPackages = python.pkgs; }; | ||
6 | } | 7 | } |
diff --git a/pkgs/python-packages/pymilter.nix b/pkgs/python-packages/pymilter.nix new file mode 100644 index 00000000..736794e0 --- /dev/null +++ b/pkgs/python-packages/pymilter.nix | |||
@@ -0,0 +1,11 @@ | |||
1 | { pythonPackages, libmilter }: with pythonPackages; | ||
2 | buildPythonPackage rec { | ||
3 | pname = "pymilter"; | ||
4 | version = "1.0.4"; | ||
5 | src = fetchPypi { | ||
6 | inherit pname version; | ||
7 | sha256 = "1bpcvq7d72q0zi7c8h5knhasywwz9gxc23n9fxmw874n5k8hsn7k"; | ||
8 | }; | ||
9 | doCheck = false; | ||
10 | buildInputs = [ libmilter ]; | ||
11 | } | ||