depot/third_party/nixpkgs/pkgs/development/python-modules/python-ethtool/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

36 lines
849 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pkg-config,
libnl,
nettools,
}:
buildPythonPackage rec {
pname = "python-ethtool";
version = "0.15";
format = "setuptools";
src = fetchFromGitHub {
owner = "fedora-python";
repo = pname;
rev = "v${version}";
sha256 = "0arkcfq64a4fl88vjjsx4gd3mhcpa7mpq6sblpkgs4k4m9mccz6i";
};
postPatch = ''
substituteInPlace tests/parse_ifconfig.py --replace "Popen('ifconfig'," "Popen('${nettools}/bin/ifconfig',"
'';
buildInputs = [ libnl ];
nativeBuildInputs = [ pkg-config ];
pythonImportsCheck = [ "ethtool" ];
meta = with lib; {
description = "Python bindings for the ethtool kernel interface";
homepage = "https://github.com/fedora-python/python-ethtool";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ elohmeier ];
};
}