Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 485 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, nose }: 3 4buildPythonPackage rec { 5 pname = "pygeoip"; 6 version = "0.3.2"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "f22c4e00ddf1213e0fae36dc60b46ee7c25a6339941ec1a975539014c1f9a96d"; 11 }; 12 13 # requires geoip samples 14 doCheck = false; 15 16 buildInputs = [ nose ]; 17 18 meta = with lib; { 19 description = "Pure Python GeoIP API"; 20 homepage = "https://github.com/appliedsec/pygeoip"; 21 license = licenses.lgpl3Plus; 22 }; 23}