mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
69b393ace5
These URLs are reported as problematic by Repology. It could be a permanent redirection or the page does not exist anymore
24 lines
447 B
Nix
24 lines
447 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 = "https://github.com/google/ipaddr-py";
|
|
license = licenses.asl20;
|
|
};
|
|
|
|
}
|