Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pycomposefile / default.nix
blob2789fbb69d2258dd8720b7b19ac2f9e08f7810b7
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , pyyaml
6 , twine
7 }:
9 buildPythonPackage rec {
10   pname = "pycomposefile";
11   version = "0.0.30";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     extension = "tar.gz";
17     hash = "sha256-GQopIO8F+G5iDz4NF2GTHCpXo4uqKHdHIzffacihylM=";
18   };
20   nativeBuildInput = [
21     setuptools
22   ];
24   propagatedBuildInputs = [
25     pyyaml
26     twine
27   ];
29   doCheck = false; # tests are broken
31   meta = with lib; {
32     description = "Python library for structured deserialization of Docker Compose files";
33     homepage = "https://github.com/smurawski/pycomposefile";
34     license = licenses.mit;
35     maintainers = with maintainers; [ mdarocha ];
36   };