pythonPackages.aioprocessing: init at 1.0.1 (#49170)
This commit is contained in:
committed by
Robert Schütz
parent
bd4387f599
commit
5adfcb951a
26
pkgs/development/python-modules/aioprocessing/default.nix
Normal file
26
pkgs/development/python-modules/aioprocessing/default.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonAtLeast
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioprocessing";
|
||||
version = "1.0.1";
|
||||
disabled = !(pythonAtLeast "3.4");
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1yq1gfsky2kjimwdmzqk893sp6387vbl4bw0sbha5hl6cm3jp5dn";
|
||||
};
|
||||
|
||||
# Tests aren't included in pypi package
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "A library that integrates the multiprocessing module with asyncio";
|
||||
homepage = https://github.com/dano/aioprocessing;
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = with lib.maintainers; [ uskudnik ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user