tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.mohawk: modernize
pyrox.dev
2 years ago
e3607cab
fbc52726
+6
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
mohawk
default.nix
+6
-3
pkgs/development/python-modules/mohawk/default.nix
···
5
fetchpatch2,
6
pytestCheckHook,
7
six,
0
8
}:
9
10
buildPythonPackage rec {
11
pname = "mohawk";
12
version = "1.1.0";
13
-
format = "setuptools";
14
15
src = fetchPypi {
16
inherit pname version;
17
-
sha256 = "08wppsv65yd0gdxy5zwq37yp6jmxakfz4a2yx5wwq2d222my786j";
18
};
19
20
patches = [
···
26
})
27
];
28
29
-
propagatedBuildInputs = [ six ];
0
0
30
31
nativeCheckInputs = [ pytestCheckHook ];
32
···
5
fetchpatch2,
6
pytestCheckHook,
7
six,
8
+
setuptools,
9
}:
10
11
buildPythonPackage rec {
12
pname = "mohawk";
13
version = "1.1.0";
14
+
pyproject = true;
15
16
src = fetchPypi {
17
inherit pname version;
18
+
hash = "sha256-0qDjqxCiCcx56V4o8t1UvUpz/RmY/+J7e6D5Yra+lyM=";
19
};
20
21
patches = [
···
27
})
28
];
29
30
+
build-system = [ setuptools ];
31
+
32
+
dependencies = [ six ];
33
34
nativeCheckInputs = [ pytestCheckHook ];
35