blob: 7a6c3930907abd593daa4b7cb4f8f9e4fd3a1802 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchPypi,
flit-core,
pyyaml,
}:
buildPythonPackage rec {
pname = "pycomposefile";
version = "0.0.34";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-kzqTtDn4aSiCtNUP90ThKj2ZYEAGjpZlGjfdhCEmpQg=";
};
build-system = [ flit-core ];
dependencies = [ pyyaml ];
# Tests are broken
doCheck = false;
pythonImportsCheck = [ "pycomposefile" ];
meta = {
description = "Python library for structured deserialization of Docker Compose files";
homepage = "https://github.com/smurawski/pycomposefile";
changelog = "https://github.com/smurawski/pycomposefile/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mdarocha ];
};
}
|