python310Packages.netifaces: add format

- disable on obsolete Python releases
main
Fabian Affolter 2 years ago
parent 13a4a8702c
commit 069f9a077e
  1. 17
      pkgs/development/python-modules/netifaces/default.nix

@ -1,25 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
version = "0.11.0";
pname = "netifaces";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "043a79146eb2907edf439899f262b3dfe41717d34124298ed281139a8b93ca32";
hash = "sha256-BDp5FG6ykH7fQ5iZ8mKz3+QXF9NBJCmO0oETmouTyjI=";
};
doCheck = false; # no tests implemented
# No tests implemented
doCheck = false;
pythonImportsCheck = [ "netifaces" ];
pythonImportsCheck = [
"netifaces"
];
meta = with lib; {
homepage = "https://alastairs-place.net/projects/netifaces/";
description = "Portable access to network interfaces from Python";
homepage = "https://github.com/al45tair/netifaces";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}

Loading…
Cancel
Save