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
7
python3Packages.buildPythonApplication rec {
8
8
pname = "pyditz";
9
9
version = "0.11";
10
10
+
pyproject = true;
10
11
11
12
src = fetchPypi {
12
13
inherit pname version;
13
14
hash = "sha256-2gNlrpBk4wxKJ1JvsNeoAv2lyGUc2mmQ0Xvn7eiaJVE=";
14
15
};
15
15
-
nativeBuildInputs = with python3Packages; [ setuptools-scm ];
16
16
-
propagatedBuildInputs = with python3Packages; [
16
16
+
17
17
+
build-system = with python3Packages; [ setuptools-scm ];
18
18
+
19
19
+
dependencies = with python3Packages; [
17
20
pyyaml
18
21
six
19
22
jinja2
20
23
cerberus
21
24
];
22
25
23
23
-
nativeCheckInputs = with python3Packages; [ unittestCheckHook ];
24
24
-
25
25
-
meta = with lib; {
26
26
-
homepage = "https://pypi.org/project/pyditz/";
26
26
+
meta = {
27
27
+
homepage = "https://hg.sr.ht/~zondo/pyditz";
27
28
description = "Drop-in replacement for the Ditz distributed issue tracker";
28
28
-
maintainers = [ maintainers.ilikeavocadoes ];
29
29
-
license = licenses.lgpl2;
30
30
-
platforms = platforms.linux;
29
29
+
maintainers = with lib.maintainers; [ ilikeavocadoes ];
30
30
+
license = lib.licenses.lgpl2Plus;
31
31
+
platforms = lib.platforms.linux;
31
32
};
32
33
}