Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pillow, 6 isPy27, 7}: 8 9buildPythonPackage rec { 10 pname = "modestmaps"; 11 version = "1.4.7"; 12 disabled = !isPy27; 13 14 src = fetchPypi { 15 pname = "ModestMaps"; 16 inherit version; 17 sha256 = "698442a170f02923f8ea55f18526b56c17178162e44304f896a8a5fd65ab4457"; 18 }; 19 20 propagatedBuildInputs = [ pillow ]; 21 22 meta = with lib; { 23 description = "Library for building interactive maps"; 24 homepage = "http://modestmaps.com"; 25 license = licenses.bsd3; 26 }; 27}