Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, isPyPy 6}: 7 8buildPythonPackage rec { 9 pname = "ruamel.ordereddict"; 10 version = "0.4.14"; 11 disabled = isPy3k || isPyPy; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "281051d26eb2b18ef3d920e1e260716a52bd058a6b1a2f324102fc6a15cb8d4a"; 16 }; 17 18 meta = with stdenv.lib; { 19 description = "A version of dict that keeps keys in insertion resp. sorted order"; 20 homepage = "https://sourceforge.net/projects/ruamel-ordereddict/"; 21 license = licenses.mit; 22 }; 23 24}