python311Packages.types-docopt: init at 0.6.11.4

This commit is contained in:
Fabian Affolter 2023-08-26 12:49:24 +02:00
parent 49d00dd6d6
commit f036cc78a5
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-docopt";
version = "0.6.11.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-mRpkwVaTEMIkCuc0/SwQYnq7ikr6875axvTv+aYB8xo=";
};
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"docopt-stubs"
];
meta = with lib; {
description = "Typing stubs for docopt";
homepage = "https://pypi.org/project/types-docopt/";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -13132,6 +13132,8 @@ self: super: with self; {
types-deprecated = callPackage ../development/python-modules/types-deprecated { };
types-docopt = callPackage ../development/python-modules/types-docopt { };
types-docutils = callPackage ../development/python-modules/types-docutils { };
types-enum34 = callPackage ../development/python-modules/types-enum34 { };