ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / txzmq / default.nix
blob6ae66dba90ca55ff5b701229c52af349d6628ba0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pyzmq
6 , twisted
7 }:
9 buildPythonPackage rec {
10   pname = "txzmq";
11   version = "1.0.0";
13   src = fetchPypi {
14     inherit version;
15     pname = "txZMQ";
16     sha256 = "sha256-jWB9C/CcqUYAuOQvByHb5D7lOgRwGCNErHrOfljcYXc=";
17   };
19   propagatedBuildInputs = [
20     pyzmq
21     twisted
22   ];
24   checkInputs = [
25     pytestCheckHook
26   ];
28   pythonImportsCheck = [ "txzmq" ];
30   meta = with lib; {
31     description = "Twisted bindings for ZeroMQ";
32     homepage = "https://github.com/smira/txZMQ";
33     license = licenses.mpl20;
34     maintainers = with maintainers; [ wolfangaukang ];
35   };