pycomposefile: init at 0.0.30

This commit is contained in:
mdarocha
2023-10-31 11:45:23 -07:00
committed by Jonathan Ringer
parent 904bfb1759
commit 97532516ca
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, pyyaml
, twine
}:
buildPythonPackage rec {
pname = "pycomposefile";
version = "0.0.30";
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 ];
};
}
+1
View File
@@ -9125,6 +9125,7 @@ self: super: with self; {
pycketcasts = callPackage ../development/python-modules/pycketcasts { };
pycomposefile = callPackage ../development/python-modules/pycomposefile { };
pycontrol4 = callPackage ../development/python-modules/pycontrol4 { };
pycookiecheat = callPackage ../development/python-modules/pycookiecheat { };