Skip to content

Commit

Permalink
python312Packages.paste: use pyproject = true
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyroussel committed Sep 13, 2024
1 parent 7ea47b7 commit 648e093
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkgs/development/python-modules/paste/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
buildPythonPackage rec {
pname = "paste";
version = "3.10.1";
format = "setuptools";
pyproject = true;

disabled = pythonOlder "3.7";

src = fetchFromGitHub {
owner = "cdent";
owner = "pasteorg";
repo = "paste";
rev = "refs/tags/${version}";
hash = "sha256-NY/h6hbpluEu1XAv3o4mqoG+l0LXfM1dw7+G0Rm1E4o=";
Expand All @@ -26,7 +26,9 @@ buildPythonPackage rec {
patchShebangs tests/cgiapp_data/
'';

propagatedBuildInputs = [
build-system = [ setuptools ];

dependencies = [
setuptools
six
];
Expand All @@ -43,7 +45,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Tools for using a Web Server Gateway Interface stack";
homepage = "https://pythonpaste.readthedocs.io/";
changelog = "https://github.com/cdent/paste/blob/${version}/docs/news.txt";
changelog = "https://github.com/pasteorg/paste/blob/${version}/docs/news.txt";
license = licenses.mit;
maintainers = [ ];
};
Expand Down

0 comments on commit 648e093

Please sign in to comment.