summary refs log tree commit diff
path: root/pkgs/development/python-modules/ipaddr/default.nix
blob: 4325e6ea8844d0a71f66a5996c22dd423267bbfa (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
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:

buildPythonPackage rec {
  pname = "ipaddr";
  version = "2.1.11";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1dwq3ngsapjc93fw61rp17fvzggmab5x1drjzvd4y4q0i255nm8v";
  };

  meta = with stdenv.lib; {
    description = "Google's IP address manipulation library";
    homepage = http://code.google.com/p/ipaddr-py/;
    license = licenses.asl20;
  };

}