mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
python310Packages.txzmq: init at 1.0.0
This commit is contained in:
36
pkgs/development/python-modules/txzmq/default.nix
Normal file
36
pkgs/development/python-modules/txzmq/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user