c09c4b9ff1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python2.7-ipaddr/versions
24 lines
445 B
Nix
24 lines
445 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ipaddr";
|
|
version = "2.2.0";
|
|
disabled = isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1ml8r8z3f0mnn381qs1snbffa920i9ycp6mm2am1d3aqczkdz4j0";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Google's IP address manipulation library";
|
|
homepage = http://code.google.com/p/ipaddr-py/;
|
|
license = licenses.asl20;
|
|
};
|
|
|
|
}
|