apprise = fromMyPythonPackages "apprise";
buildbot = import ./buildbot.nix;
wokkel = fromMyPythonPackages "wokkel";
+ pymilter = fromMyPythonPackages "pymilter";
}
apprise = callPackage ./apprise { inherit mylibs; pythonPackages = python.pkgs; };
buildbot-plugins = callPackage ./buildbot/plugins { inherit mylibs python; };
wokkel = callPackage ./wokkel.nix { pythonPackages = python.pkgs; };
+ pymilter = callPackage ./pymilter.nix { pythonPackages = python.pkgs; };
}
--- /dev/null
+{ pythonPackages, libmilter }: with pythonPackages;
+buildPythonPackage rec {
+ pname = "pymilter";
+ version = "1.0.4";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1bpcvq7d72q0zi7c8h5knhasywwz9gxc23n9fxmw874n5k8hsn7k";
+ };
+ doCheck = false;
+ buildInputs = [ libmilter ];
+}