Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 27 lines 595 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4, pytestCheckHook, pytestrunner, pytestcov 5, isPy3k 6}: 7 8buildPythonPackage rec { 9 pname = "multidict"; 10 version = "5.1.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "25b4e5f22d3a37ddf3effc0710ba692cfc792c2b9edfb9c05aefe823256e84d5"; 15 }; 16 17 checkInputs = [ pytestCheckHook pytestrunner pytestcov ]; 18 19 disabled = !isPy3k; 20 21 meta = with lib; { 22 description = "Multidict implementation"; 23 homepage = "https://github.com/aio-libs/multidict/"; 24 license = licenses.asl20; 25 maintainers = with maintainers; [ dotlambda ]; 26 }; 27}