4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, pythonPackages
|
|
}:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "cpuset";
|
|
version = "1.6";
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
configparser
|
|
future
|
|
];
|
|
|
|
# https://github.com/lpechacek/cpuset/pull/36
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/MawKKe/cpuset/commit/a4b6b275d0a43d2794ab9e82922d3431aeea9903.patch";
|
|
sha256 = "1mi1xrql81iczl67s4dk2rm9r1mk36qhsa19wn7zgryf95krsix2";
|
|
})
|
|
];
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lpechacek";
|
|
repo = "cpuset";
|
|
rev = "v${version}";
|
|
sha256 = "0ig0ml2zd5542d0989872vmy7cs3qg7nxwa93k42bdkm50amhar4";
|
|
};
|
|
|
|
checkPhase = ''
|
|
cd t
|
|
make
|
|
'';
|
|
|
|
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;
|
|
maintainers = with maintainers; [ thiagokokada wykurz ];
|
|
};
|
|
}
|