Unverified Commit 84646923 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python312Packages.parts: 2.1.0 -> 3.0.0 (#403207)

parents 6575374e 6fa588ba
Loading
Loading
Loading
Loading
+6 −12
Original line number Diff line number Diff line
@@ -2,27 +2,20 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  pythonOlder,
  setuptools,
  wheel,
}:

buildPythonPackage rec {
  pname = "parts";
  version = "2.1.0";
  format = "pyproject";

  disabled = pythonOlder "3.7";
  version = "3.0.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-zauHOv8pM47CVIQIo8aMMPZJgwIowgbVLvfFWzIqHoc=";
    hash = "sha256-MuZDe/j04sE8tX6658zYwbebwGYp7r3wVBbumoBJ2WQ=";
  };

  nativeBuildInputs = [
    setuptools
    wheel
  ];
  build-system = [ setuptools ];

  # Project has no tests
  doCheck = false;
@@ -32,7 +25,8 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Library for common list functions related to partitioning lists";
    homepage = "https://github.com/lapets/parts";
    license = with licenses; [ mit ];
    changelog = "https://github.com/lapets/parts/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}