Merge pull request #240838 from r-ryantm/auto-update/python311Packages.dparse

python311Packages.dparse: 0.6.2 -> 0.6.3
This commit is contained in:
Fabian Affolter 2023-07-01 12:52:54 +02:00 committed by GitHub
commit 5801b4eea0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "dparse";
version = "0.6.2";
version = "0.6.3";
format = "setuptools";
disabled = pythonOlder "3.5";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-1FJVvaIfmYvH3fKv1eYlBbphNHVrotQqhMVrCCZhTf4=";
hash = "sha256-J7uLS8rv7DmXaXuj9uBrJEcgC6JzwLCFw9ASoEVxtSg=";
};
propagatedBuildInputs = [
@ -42,6 +42,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A parser for Python dependency files";
homepage = "https://github.com/pyupio/dparse";
changelog = "https://github.com/pyupio/dparse/blob/${version}/HISTORY.rst";
license = licenses.mit;
maintainers = with maintainers; [ thomasdesr ];
};