about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycomposefile/default.nix
blob: 2789fbb69d2258dd8720b7b19ac2f9e08f7810b7 (plain) (blame)
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
36
37
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, pyyaml
, twine
}:

buildPythonPackage rec {
  pname = "pycomposefile";
  version = "0.0.30";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    extension = "tar.gz";
    hash = "sha256-GQopIO8F+G5iDz4NF2GTHCpXo4uqKHdHIzffacihylM=";
  };

  nativeBuildInput = [
    setuptools
  ];

  propagatedBuildInputs = [
    pyyaml
    twine
  ];

  doCheck = false; # tests are broken

  meta = with lib; {
    description = "Python library for structured deserialization of Docker Compose files";
    homepage = "https://github.com/smurawski/pycomposefile";
    license = licenses.mit;
    maintainers = with maintainers; [ mdarocha ];
  };
}