tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pyditz: remove testPhase
wxt
1 year ago
ce50474f
bb90c6ab
+10
-9
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
py
pyditz
package.nix
+10
-9
pkgs/by-name/py/pyditz/package.nix
···
7
python3Packages.buildPythonApplication rec {
8
pname = "pyditz";
9
version = "0.11";
0
10
11
src = fetchPypi {
12
inherit pname version;
13
hash = "sha256-2gNlrpBk4wxKJ1JvsNeoAv2lyGUc2mmQ0Xvn7eiaJVE=";
14
};
15
-
nativeBuildInputs = with python3Packages; [ setuptools-scm ];
16
-
propagatedBuildInputs = with python3Packages; [
0
0
17
pyyaml
18
six
19
jinja2
20
cerberus
21
];
22
23
-
nativeCheckInputs = with python3Packages; [ unittestCheckHook ];
24
-
25
-
meta = with lib; {
26
-
homepage = "https://pypi.org/project/pyditz/";
27
description = "Drop-in replacement for the Ditz distributed issue tracker";
28
-
maintainers = [ maintainers.ilikeavocadoes ];
29
-
license = licenses.lgpl2;
30
-
platforms = platforms.linux;
31
};
32
}
···
7
python3Packages.buildPythonApplication rec {
8
pname = "pyditz";
9
version = "0.11";
10
+
pyproject = true;
11
12
src = fetchPypi {
13
inherit pname version;
14
hash = "sha256-2gNlrpBk4wxKJ1JvsNeoAv2lyGUc2mmQ0Xvn7eiaJVE=";
15
};
16
+
17
+
build-system = with python3Packages; [ setuptools-scm ];
18
+
19
+
dependencies = with python3Packages; [
20
pyyaml
21
six
22
jinja2
23
cerberus
24
];
25
26
+
meta = {
27
+
homepage = "https://hg.sr.ht/~zondo/pyditz";
0
0
28
description = "Drop-in replacement for the Ditz distributed issue tracker";
29
+
maintainers = with lib.maintainers; [ ilikeavocadoes ];
30
+
license = lib.licenses.lgpl2Plus;
31
+
platforms = lib.platforms.linux;
32
};
33
}