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

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

python311Packages.dparse: 0.6.2 -> 0.6.3
parents 8578b624 2e3fe5a3
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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 ];
  };