mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
Merge pull request #312925 from r-ryantm/auto-update/python311Packages.pycomposefile
python311Packages.pycomposefile: 0.0.30 -> 0.0.31
This commit is contained in:
commit
5ff297f730
@ -1,36 +1,37 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools
|
||||
, pyyaml
|
||||
, twine
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
pyyaml,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pycomposefile";
|
||||
version = "0.0.30";
|
||||
format = "setuptools";
|
||||
version = "0.0.31";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "tar.gz";
|
||||
hash = "sha256-GQopIO8F+G5iDz4NF2GTHCpXo4uqKHdHIzffacihylM=";
|
||||
hash = "sha256-SYul81giQLUM1FdgfabKJyrbSu4xdoaWblcE87ZbBwg=";
|
||||
};
|
||||
|
||||
nativeBuildInput = [
|
||||
setuptools
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pyyaml
|
||||
twine
|
||||
];
|
||||
dependencies = [ pyyaml ];
|
||||
|
||||
doCheck = false; # tests are broken
|
||||
# Tests are broken
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "pycomposefile" ];
|
||||
|
||||
meta = with lib; {
|
||||
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 = licenses.mit;
|
||||
maintainers = with maintainers; [ mdarocha ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user