Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 22 lines 551 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, flake8, six }: 2 3buildPythonPackage rec { 4 pname = "orderedmultidict"; 5 version = "1.0.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1bc2v0yflsxjyyjx4q9wqx0j3bvzcw9z87d5pz4iqac7bsxhn1q4"; 10 }; 11 12 checkInputs = [ flake8 ]; 13 14 propagatedBuildInputs = [ six ]; 15 16 meta = with stdenv.lib; { 17 description = "Ordered Multivalue Dictionary."; 18 homepage = https://github.com/gruns/orderedmultidict; 19 license = licenses.publicDomain; 20 maintainers = with maintainers; [ vanzef ]; 21 }; 22}