Merge pull request #246687 from r-ryantm/auto-update/python310Packages.commandparse

python310Packages.commandparse: 1.1.1 -> 1.1.2
This commit is contained in:
Fabian Affolter 2023-08-04 20:52:46 +02:00 committed by GitHub
commit f6f02db1e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,20 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "commandparse";
version = "1.1.1";
version = "1.1.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "06mcxc0vs5qdcywalgyx5zm18z4xcsrg5g0wsqqv5qawkrvmvl53";
sha256 = "sha256-S9e90BtS6qMjFtYUmgC0w4IKQP8q1iR2tGqq5l2+n6o=";
};
# tests only distributed upstream source, not PyPi
doCheck = false;
pythonImportsCheck = [ "commandparse" ];
pythonImportsCheck = [
"commandparse"
];
meta = with lib; {
description = "Python module to parse command based CLI application";