biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / txzmq / default.nix
blob6c521d2f69f32ede475a26b4fe745f31dd8bc8d0
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   pyzmq,
7   twisted,
8 }:
10 buildPythonPackage rec {
11   pname = "txzmq";
12   version = "1.0.0";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit version;
17     pname = "txZMQ";
18     hash = "sha256-jWB9C/CcqUYAuOQvByHb5D7lOgRwGCNErHrOfljcYXc=";
19   };
21   propagatedBuildInputs = [
22     pyzmq
23     twisted
24   ];
26   nativeCheckInputs = [ pytestCheckHook ];
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 = [ ];
35   };