Merge pull request #207799 from r-ryantm/auto-update/python310Packages.zcs

python310Packages.zcs: 0.1.22 -> 0.1.25
This commit is contained in:
Fabian Affolter 2022-12-26 09:43:29 +01:00 committed by GitHub
commit 9e3c508546
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,32 +4,43 @@
, python
, yacs
, boxx
, pythonOlder
}:
buildPythonPackage rec {
pname = "zcs";
version = "0.1.22";
version = "0.1.25";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-+0lG2OirfXj55IFA9GMERVWtrWwULfVfdbIg8ebH+7M=";
hash = "sha256-/QIyRQtxLDVW+vcQi5bL8rJ0o3+OhqGhQEALR1YO1pg=";
};
patches = [
./fix-test-yaml.patch
];
propagatedBuildInputs = [ yacs ];
propagatedBuildInputs = [
yacs
];
pythonImportsCheck = [ "zcs" ];
pythonImportsCheck = [
"zcs"
];
checkInputs = [
boxx
];
checkInputs = [ boxx ];
checkPhase = ''
${python.interpreter} test/test_zcs.py
'';
meta = with lib; {
description = "A flexible powerful configuration system which takes advantage of both argparse and yacs";
description = "Configuration system which takes advantage of both argparse and yacs";
homepage = "https://github.com/DIYer22/zcs";
license = licenses.mit;
maintainers = with maintainers; [ lucasew ];