My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pygeoip/default.nix

23 lines
485 B

{ lib, buildPythonPackage, fetchPypi
, nose }:
buildPythonPackage rec {
pname = "pygeoip";
version = "0.3.2";
src = fetchPypi {
inherit pname version;
sha256 = "f22c4e00ddf1213e0fae36dc60b46ee7c25a6339941ec1a975539014c1f9a96d";
};
# requires geoip samples
doCheck = false;
buildInputs = [ nose ];
meta = with lib; {
description = "Pure Python GeoIP API";
homepage = "https://github.com/appliedsec/pygeoip";
license = licenses.lgpl3Plus;
};
}