Unverified Commit f6f02db1 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python310Packages.commandparse: 1.1.1 -> 1.1.2
parents 11928fa0 52d6cbc5
Loading
Loading
Loading
Loading
+10 −3
Original line number Diff line number Diff line
{ 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";