mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
python312Packages.ethtool: rename from python-ethtool
This commit is contained in:
parent
f46e45c103
commit
78b9e2d78f
|
@ -8,13 +8,13 @@
|
|||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-ethtool";
|
||||
pname = "ethtool";
|
||||
version = "0.15";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fedora-python";
|
||||
repo = pname;
|
||||
repo = "python-ethtool";
|
||||
rev = "v${version}";
|
||||
sha256 = "0arkcfq64a4fl88vjjsx4gd3mhcpa7mpq6sblpkgs4k4m9mccz6i";
|
||||
};
|
|
@ -6,7 +6,7 @@
|
|||
, gobject-introspection
|
||||
, gtk3
|
||||
, python-linux-procfs
|
||||
, python-ethtool
|
||||
, ethtool
|
||||
, wrapGAppsHook3
|
||||
}:
|
||||
|
||||
|
@ -38,7 +38,7 @@ buildPythonApplication rec {
|
|||
wrapGAppsHook3
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ pygobject3 python-linux-procfs python-ethtool ];
|
||||
propagatedBuildInputs = [ pygobject3 python-linux-procfs ethtool ];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/tuna
|
||||
|
|
|
@ -406,6 +406,7 @@ mapAliases ({
|
|||
PyMVGLive = pymvglive; # added 2023-02-19
|
||||
pymyq = python-myq; # added 2023-10-20
|
||||
pynose = throw "pynose was removed, because it violates the license of nose, by redistributing modified LGPL code under MIT.";
|
||||
python-ethtool = ethtool; # added 2024-07-23
|
||||
python-myq = throw "python-myq has been removed, as the service provider has decided to block its API requests"; # added 2023-12-07
|
||||
pyqt4 = throw "pyqt4 has been removed, because it depended on the long EOL qt4"; # added 2022-06-09
|
||||
pyqt5_sip = pyqt5-sip; # added 2024-01-07
|
||||
|
|
|
@ -4000,6 +4000,8 @@ self: super: with self; {
|
|||
|
||||
eth-utils = callPackage ../development/python-modules/eth-utils { };
|
||||
|
||||
ethtool = callPackage ../development/python-modules/ethtool { };
|
||||
|
||||
etils = callPackage ../development/python-modules/etils { };
|
||||
|
||||
etuples = callPackage ../development/python-modules/etuples { };
|
||||
|
@ -12644,8 +12646,6 @@ self: super: with self; {
|
|||
|
||||
python-etcd = callPackage ../development/python-modules/python-etcd { };
|
||||
|
||||
python-ethtool = callPackage ../development/python-modules/python-ethtool { };
|
||||
|
||||
python-ev3dev2 = callPackage ../development/python-modules/python-ev3dev2 { };
|
||||
|
||||
python-fedora = callPackage ../development/python-modules/python-fedora { };
|
||||
|
|
Loading…
Reference in a new issue