Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonAtLeast 5}: 6 7buildPythonPackage rec { 8 pname = "aioprocessing"; 9 version = "1.0.1"; 10 disabled = !(pythonAtLeast "3.4"); 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1yq1gfsky2kjimwdmzqk893sp6387vbl4bw0sbha5hl6cm3jp5dn"; 15 }; 16 17 # Tests aren't included in pypi package 18 doCheck = false; 19 20 meta = { 21 description = "A library that integrates the multiprocessing module with asyncio"; 22 homepage = https://github.com/dano/aioprocessing; 23 license = lib.licenses.bsd2; 24 maintainers = with lib.maintainers; [ uskudnik ]; 25 }; 26}