mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 07:04:25 +00:00
python312Packages.jaraco-test: 5.4.0 -> 5.5.1 (#342916)
This commit is contained in:
commit
2cfbcf00f8
@ -2,7 +2,7 @@
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
pythonOlder,
|
||||
fetchPypi,
|
||||
fetchFromGitHub,
|
||||
setuptools-scm,
|
||||
toml,
|
||||
jaraco-functools,
|
||||
@ -14,15 +14,16 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jaraco-test";
|
||||
version = "5.4.0";
|
||||
version = "5.5.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "jaraco.test";
|
||||
inherit version;
|
||||
hash = "sha256-29NDh4dYrcVER9YRXEYXia2zH8QHOyEpUCQwk7oxfsI=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "jaraco";
|
||||
repo = "jaraco.test";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-jbnU6PFVUd/eD9CWHyJvaTFkcZaIIwztkN9UbQZH1RU=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools-scm ];
|
||||
@ -47,7 +48,7 @@ buildPythonPackage rec {
|
||||
meta = with lib; {
|
||||
description = "Testing support by jaraco";
|
||||
homepage = "https://github.com/jaraco/jaraco.test";
|
||||
changelog = "https://github.com/jaraco/jaraco.test/blob/v${version}/CHANGES.rst";
|
||||
changelog = "https://github.com/jaraco/jaraco.test/blob/${src.rev}/NEWS.rst";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user