Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 574 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, nose }: 2 3buildPythonPackage rec { 4 pname = "IPy"; 5 version = "1.00"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "08d6kcacj67mvh0b6y765ipccy6gi4w2ndd4v1l3im2qm1cgcarg"; 10 }; 11 12 checkInputs = [ nose ]; 13 14 checkPhase = '' 15 nosetests -e fuzz 16 ''; 17 18 meta = with stdenv.lib; { 19 description = "Class and tools for handling of IPv4 and IPv6 addresses and networks"; 20 homepage = "https://github.com/autocracy/python-ipy"; 21 license = licenses.bsdOriginal; 22 maintainers = with maintainers; [ y0no ]; 23 }; 24}