anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / ipaddr / default.nix
blobf42decd345b38b2e014eb2459040d599091e53c4
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "ipaddr";
9   version = "2.2.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1ml8r8z3f0mnn381qs1snbffa920i9ycp6mm2am1d3aqczkdz4j0";
15   };
17   checkPhase = ''
18     python ipaddr_test.py
19   '';
21   meta = with lib; {
22     description = "IP address manipulation library";
23     homepage = "https://github.com/google/ipaddr-py";
24     license = licenses.asl20;
25     maintainers = [ maintainers.astro ];
26   };