mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-13 23:53:26 +00:00
python311Packages.geoip2: fix build
This commit is contained in:
parent
d21f262d02
commit
4a9e4a831b
@ -2,6 +2,8 @@
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools
|
||||
, setuptools-scm
|
||||
, maxminddb
|
||||
, mocket
|
||||
, pytestCheckHook
|
||||
@ -15,7 +17,7 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "geoip2";
|
||||
version = "4.8.0";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
@ -24,6 +26,11 @@ buildPythonPackage rec {
|
||||
hash = "sha256-3ZzBgLfUFyQkDqSB1dU5FJ5lsjT2QoKyMbkXB5SprDU=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
maxminddb
|
||||
|
Loading…
Reference in New Issue
Block a user