python310Packages.txzmq: init at 1.0.0

This commit is contained in:
P. R. d. O 2022-01-26 18:46:32 -06:00
parent a14bb132b5
commit 3ec06ba75c
No known key found for this signature in database
GPG key ID: 7B0FF33FF90110C7
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pyzmq
, twisted
}:
buildPythonPackage rec {
pname = "txzmq";
version = "1.0.0";
src = fetchPypi {
inherit version;
pname = "txZMQ";
sha256 = "sha256-jWB9C/CcqUYAuOQvByHb5D7lOgRwGCNErHrOfljcYXc=";
};
propagatedBuildInputs = [
pyzmq
twisted
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "txzmq" ];
meta = with lib; {
description = "Twisted bindings for ZeroMQ";
homepage = "https://github.com/smira/txZMQ";
license = licenses.mpl20;
maintainers = with maintainers; [ wolfangaukang ];
};
}

View file

@ -9973,6 +9973,8 @@ in {
txtorcon = callPackage ../development/python-modules/txtorcon { };
txzmq = callPackage ../development/python-modules/txzmq { };
typecode = callPackage ../development/python-modules/typecode { };
typecode-libmagic = callPackage ../development/python-modules/typecode/libmagic.nix {