diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-02-04 08:31:02 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-25 00:04:45 +0200 |
commit | 98161ecd1d7b7ef019737eac065431710157a607 (patch) | |
tree | b1ea4a6a4bef2870b25a94d0e10a4391baf46a8b /pkgs | |
parent | 9699554e811053c888e1a7a93bb3a2033c814f90 (diff) | |
download | NUR-98161ecd1d7b7ef019737eac065431710157a607.tar.gz NUR-98161ecd1d7b7ef019737eac065431710157a607.tar.zst NUR-98161ecd1d7b7ef019737eac065431710157a607.zip |
Add milter to verify from
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 | } | ||