a5adf1ddd8
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
23 lines
493 B
Nix
23 lines
493 B
Nix
{ lib, stdenv, 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;
|
|
};
|
|
}
|