Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 31 lines 548 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy27 5, mock 6, tox 7, pylint 8}: 9 10buildPythonPackage rec { 11 pname = "geopy"; 12 version = "1.20.0"; 13 disabled = !isPy27; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "9419bc90ee6231590c4ae7acf1cf126cefbd0736942da7a6a1436946e80830e2"; 18 }; 19 20 doCheck = false; # too much 21 22 buildInputs = [ mock tox pylint ]; 23 24 meta = with stdenv.lib; { 25 homepage = "https://github.com/geopy/geopy"; 26 description = "Python Geocoding Toolbox"; 27 license = licenses.mit; 28 broken = true; 29 }; 30 31}