tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pyditz: nixfmt
wxt
1 year ago
bb90c6ab
938eaf0d
+13
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
py
pyditz
package.nix
+13
-4
pkgs/by-name/py/pyditz/package.nix
···
1
1
-
{ lib, python3Packages, fetchPypi }:
1
1
+
{
2
2
+
lib,
3
3
+
python3Packages,
4
4
+
fetchPypi,
5
5
+
}:
2
6
3
7
python3Packages.buildPythonApplication rec {
4
8
pname = "pyditz";
···
8
12
inherit pname version;
9
13
hash = "sha256-2gNlrpBk4wxKJ1JvsNeoAv2lyGUc2mmQ0Xvn7eiaJVE=";
10
14
};
11
11
-
nativeBuildInputs = with python3Packages;[ setuptools-scm ];
12
12
-
propagatedBuildInputs = with python3Packages;[ pyyaml six jinja2 cerberus ];
15
15
+
nativeBuildInputs = with python3Packages; [ setuptools-scm ];
16
16
+
propagatedBuildInputs = with python3Packages; [
17
17
+
pyyaml
18
18
+
six
19
19
+
jinja2
20
20
+
cerberus
21
21
+
];
13
22
14
14
-
nativeCheckInputs = with python3Packages;[ unittestCheckHook ];
23
23
+
nativeCheckInputs = with python3Packages; [ unittestCheckHook ];
15
24
16
25
meta = with lib; {
17
26
homepage = "https://pypi.org/project/pyditz/";