mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
27 lines
602 B
Nix
27 lines
602 B
Nix
{ 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 ];
|
|
};
|
|
}
|