Merge pull request #302008 from r-ryantm/auto-update/python311Packages.types-docutils

python311Packages.types-docutils: 0.20.0.20240331 -> 0.20.0.20240406
This commit is contained in:
Fabian Affolter 2024-04-06 12:51:45 +02:00 committed by GitHub
commit cb707c9f2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 12 deletions

View File

@ -1,29 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "types-docutils";
version = "0.20.0.20240331";
version = "0.20.0.20240406";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-rJnN80BAyYIIH1QjfWAX+PXa/gvruBilmL+Xpl9bFxU=";
hash = "sha256-6OxKWhJdBthjK7qsihH76hih7fqU35xRKdxFmAkVuEs=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"docutils-stubs"
];
pythonImportsCheck = [ "docutils-stubs" ];
meta = with lib; {
description = "Typing stubs for docutils";