cpuset: migrate to by-name

This commit is contained in:
Thiago Kenji Okada 2024-01-08 11:51:57 +00:00
parent 211f1d86a9
commit cb3e126042
2 changed files with 5 additions and 9 deletions

View File

@ -1,14 +1,14 @@
{ lib
, fetchFromGitHub
, fetchpatch
, pythonPackages
, python3
}:
pythonPackages.buildPythonApplication rec {
python3.pkgs.buildPythonApplication rec {
pname = "cpuset";
version = "1.6";
propagatedBuildInputs = with pythonPackages; [
propagatedBuildInputs = with python3.pkgs; [
configparser
future
];
@ -37,8 +37,8 @@ pythonPackages.buildPythonApplication rec {
meta = with lib; {
description = "Python application that forms a wrapper around the standard Linux filesystem calls to make using the cpusets facilities in the Linux kernel easier";
homepage = "https://github.com/lpechacek/cpuset";
license = licenses.gpl2;
homepage = "https://github.com/lpechacek/cpuset";
license = licenses.gpl2;
maintainers = with maintainers; [ thiagokokada wykurz ];
mainProgram = "cset";
};

View File

@ -27731,10 +27731,6 @@ with pkgs;
inherit (pkgs) meson;
};
cpuset = callPackage ../os-specific/linux/cpuset {
pythonPackages = python3Packages;
};
criu = callPackage ../os-specific/linux/criu { };
cryptomator = callPackage ../tools/security/cryptomator {