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
-
{ lib, python3Packages, fetchPypi }:
0
0
0
0
2
3
python3Packages.buildPythonApplication rec {
4
pname = "pyditz";
···
8
inherit pname version;
9
hash = "sha256-2gNlrpBk4wxKJ1JvsNeoAv2lyGUc2mmQ0Xvn7eiaJVE=";
10
};
11
-
nativeBuildInputs = with python3Packages;[ setuptools-scm ];
12
-
propagatedBuildInputs = with python3Packages;[ pyyaml six jinja2 cerberus ];
0
0
0
0
0
13
14
-
nativeCheckInputs = with python3Packages;[ unittestCheckHook ];
15
16
meta = with lib; {
17
homepage = "https://pypi.org/project/pyditz/";
···
1
+
{
2
+
lib,
3
+
python3Packages,
4
+
fetchPypi,
5
+
}:
6
7
python3Packages.buildPythonApplication rec {
8
pname = "pyditz";
···
12
inherit pname version;
13
hash = "sha256-2gNlrpBk4wxKJ1JvsNeoAv2lyGUc2mmQ0Xvn7eiaJVE=";
14
};
15
+
nativeBuildInputs = with python3Packages; [ setuptools-scm ];
16
+
propagatedBuildInputs = with python3Packages; [
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/";