Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / txzmq / default.nix
bloba8e75896b7c2621d8a9c872d7038d346bff2622a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pyzmq
6 , twisted
7 }:
9 buildPythonPackage rec {
10   pname = "txzmq";
11   version = "1.0.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit version;
16     pname = "txZMQ";
17     hash = "sha256-jWB9C/CcqUYAuOQvByHb5D7lOgRwGCNErHrOfljcYXc=";
18   };
20   propagatedBuildInputs = [
21     pyzmq
22     twisted
23   ];
25   nativeCheckInputs = [
26     pytestCheckHook
27   ];
29   pythonImportsCheck = [ "txzmq" ];
31   meta = with lib; {
32     description = "Twisted bindings for ZeroMQ";
33     homepage = "https://github.com/smira/txZMQ";
34     license = licenses.mpl20;
35     maintainers = with maintainers; [ wolfangaukang ];
36   };