Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 24 lines 521 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, isPyPy 6}: 7 8buildPythonPackage rec { 9 pname = "ruamel.ordereddict"; 10 version = "0.4.15"; 11 disabled = isPy3k || isPyPy; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "d7d9cf8b11e7662deb460260cf062980cd84b87a1d0457132060ab9d44e0a5f4"; 16 }; 17 18 meta = with 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}