aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/ipaddress/default.nix
blob: 0ce2abff596559ce452b46b54e2f6fedd5c36d40 (plain)
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
{ stdenv
, buildPythonPackage
, fetchPypi
, pythonAtLeast
, python
}:

if (pythonAtLeast "3.3") then null else buildPythonPackage rec {
  pname = "ipaddress";
  version = "1.0.22";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b146c751ea45cad6188dd6cf2d9b757f6f4f8d6ffb96a023e6f2e26eea02a72c";
  };

  checkPhase = ''
    ${python.interpreter} test_ipaddress.py
  '';

  meta = with stdenv.lib; {
    description = "Port of the 3.3+ ipaddress module to 2.6, 2.7, and 3.2";
    homepage = https://github.com/phihag/ipaddress;
    license = licenses.psfl;
  };

}