Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 26 lines 614 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonAtLeast 5}: 6 7buildPythonPackage rec { 8 pname = "aioprocessing"; 9 version = "1.1.0"; 10 disabled = !(pythonAtLeast "3.4"); 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "4603c86ff3fea673d4c643ad3adc519988cd778771b75079bc3be9e5ed4c5b66"; 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}