Skip to content

Commit

Permalink
python312Packages.setuptools-gettext: 0.1.11 -> 0.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
TomaSajt committed May 11, 2024
1 parent 9f7053f commit cce575c
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pythonAtLeast,
setuptools,
tomli,
pytestCheckHook,
Expand All @@ -12,17 +11,16 @@

buildPythonPackage rec {
pname = "setuptools-gettext";
version = "0.1.11";
version = "0.1.14";
pyproject = true;

# >=3.12 doesn't work because the package depends on `distutils`
disabled = pythonOlder "3.7" || pythonAtLeast "3.12";
disabled = pythonOlder "3.8";

src = fetchFromGitHub {
owner = "breezy-team";
repo = "setuptools-gettext";
rev = "refs/tags/v${version}";
hash = "sha256-yLKn4wwGgRdlsISAT71lD2vkIefsTJRB+OEA030adZY=";
hash = "sha256-05xKWRxmoI8tnRENuiK3Z3WNMyjgXIX5p3vhzSUeytQ=";
};

build-system = [ setuptools ];
Expand Down

0 comments on commit cce575c

Please sign in to comment.