tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.testpath: 0.5.0 -> 0.6.0
Martin Weinelt
4 years ago
59b41280
a1bad1b6
+8
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
testpath
default.nix
+8
-2
pkgs/development/python-modules/testpath/default.nix
reviewed
···
2
2
, stdenv
3
3
, buildPythonPackage
4
4
, fetchPypi
5
5
+
, flit-core
5
6
, pytestCheckHook
6
7
}:
7
8
8
9
buildPythonPackage rec {
9
10
pname = "testpath";
10
10
-
version = "0.5.0";
11
11
+
version = "0.6.0";
12
12
+
format = "pyproject";
11
13
12
14
src = fetchPypi {
13
15
inherit pname version;
14
14
-
sha256 = "05z4s4d5i1ja16hiv4jhqv63fvg1a4vw77s0ay1sw11hrl5pmkqs";
16
16
+
sha256 = "sha256-LxuX5kQsAmgevgG9hPUxAop8rqGvOCUAD1I0XDAoXg8=";
15
17
};
18
18
+
19
19
+
nativeBuildInputs = [
20
20
+
flit-core
21
21
+
];
16
22
17
23
checkInputs = [
18
24
pytestCheckHook