Unverified Commit 4bc33680 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #182929 from fabaff/parts-bump

python310Packages.parts: 1.4.0 -> 1.5.1
parents c8a8cb50 ae06ec9b
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -6,14 +6,14 @@

buildPythonPackage rec {
  pname = "parts";
  version = "1.4.0";
  format = "setuptools";
  version = "1.5.1";
  format = "pyproject";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-Qs6+3dWG5sjSmeQiL/Q2evn5TImEX0Yk/nCIe5uIMp4=";
    hash = "sha256-H6nyn2TY1Ga65CyhxOSlgcDTTC1UJi8I/4damM6I7fM=";
  };

  # Project has no tests
@@ -24,7 +24,7 @@ buildPythonPackage rec {
  ];

  meta = with lib; {
    description = "Python library for common list functions related to partitioning lists";
    description = "Library for common list functions related to partitioning lists";
    homepage = "https://github.com/lapets/parts";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];