Merge pull request #152510 from fabaff/bump-types-decorator

python3Packages.types-decorator: 5.1.0 -> 5.1.1
This commit is contained in:
Fabian Affolter
2021-12-29 23:00:49 +01:00
committed by GitHub
@@ -5,17 +5,20 @@
buildPythonPackage rec {
pname = "types-decorator";
version = "5.1.0";
version = "5.1.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-mavQDGFOVOde4I2IeZiGrMKRjMiJBeymR0upF7Mncps=";
sha256 = "sha256-WBcQj9v71OppsQcrG1fJpyakF4z9CBYMtb1PmTdptsE=";
};
# Modules doesn't have tests
doCheck = false;
pythonImportsCheck = [ "decorator-stubs" ];
pythonImportsCheck = [
"decorator-stubs"
];
meta = with lib; {
description = "Typing stubs for decorator";