Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 452 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 version = "0.10.9"; 8 pname = "netifaces"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "2dee9ffdd16292878336a58d04a20f0ffe95555465fee7c9bd23b3490ef2abf3"; 13 }; 14 15 meta = with stdenv.lib; { 16 homepage = "https://alastairs-place.net/projects/netifaces/"; 17 description = "Portable access to network interfaces from Python"; 18 license = licenses.mit; 19 }; 20 21}