tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.pycomposefile: format with nixfmt
Fabian Affolter
2 years ago
b51ff963
f255e6b7
+10
-15
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pycomposefile
default.nix
+10
-15
pkgs/development/python-modules/pycomposefile/default.nix
···
1
-
{ lib
2
-
, buildPythonPackage
3
-
, fetchPypi
4
-
, pyyaml
5
-
, pythonOlder
6
-
, setuptools
0
7
}:
8
9
buildPythonPackage rec {
···
18
hash = "sha256-SYul81giQLUM1FdgfabKJyrbSu4xdoaWblcE87ZbBwg=";
19
};
20
21
-
build-system = [
22
-
setuptools
23
-
];
24
25
-
dependencies = [
26
-
pyyaml
27
-
];
28
29
# Tests are broken
30
doCheck = false;
31
32
-
pythonImportsCheck = [
33
-
"pycomposefile"
34
-
];
35
36
meta = with lib; {
37
description = "Python library for structured deserialization of Docker Compose files";
···
1
+
{
2
+
lib,
3
+
buildPythonPackage,
4
+
fetchPypi,
5
+
pyyaml,
6
+
pythonOlder,
7
+
setuptools,
8
}:
9
10
buildPythonPackage rec {
···
19
hash = "sha256-SYul81giQLUM1FdgfabKJyrbSu4xdoaWblcE87ZbBwg=";
20
};
21
22
+
build-system = [ setuptools ];
0
0
23
24
+
dependencies = [ pyyaml ];
0
0
25
26
# Tests are broken
27
doCheck = false;
28
29
+
pythonImportsCheck = [ "pycomposefile" ];
0
0
30
31
meta = with lib; {
32
description = "Python library for structured deserialization of Docker Compose files";