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