about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/netaddr/default.nix
blob: 98c886d2825e361b80547817944176355007450e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, glibcLocales
, importlib-resources
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "netaddr";
  version = "0.8.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0hx2npi0wnhwlcybilgwlddw6qffx1mb7a3sj4p9s7bvl33mgk6n";
  };

  LC_ALL = "en_US.UTF-8";

  propagatedBuildInputs = lib.optionals (pythonOlder "3.7") [ importlib-resources ];

  nativeCheckInputs = [ 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;
  };
}