nixpkgs/pkgs/development/python-modules/netaddr/default.nix
2021-01-25 18:31:47 +01:00

33 lines
792 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, glibcLocales
, importlib-resources
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "netaddr";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "0hx2npi0wnhwlcybilgwlddw6qffx1mb7a3sj4p9s7bvl33mgk6n";
};
LC_ALL = "en_US.UTF-8";
propagatedBuildInputs = lib.optionals (pythonOlder "3.7") [ importlib-resources ];
checkInputs = [ glibcLocales pytestCheckHook ];
meta = with lib; {
homepage = "https://netaddr.readthedocs.io/en/latest/";
downloadPage = "https://github.com/netaddr/netaddr/releases";
changelog = "https://netaddr.readthedocs.io/en/latest/changes.html";
description = "A network address manipulation library for Python";
license = licenses.mit;
};
}