Merge pull request #282141 from r-ryantm/auto-update/pur

pur: 7.0.0 -> 7.3.1
This commit is contained in:
Fabian Affolter 2024-01-21 11:54:40 +01:00 committed by GitHub
commit 9b31989df8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,28 +5,32 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "pur"; pname = "pur";
version = "7.0.0"; version = "7.3.1";
format = "setuptools";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "alanhamlett"; owner = "alanhamlett";
repo = "pip-update-requirements"; repo = "pip-update-requirements";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-JAjz9A9r1H6MJX7MSq7UvQKfULhB9UuPP3tI6Cggx9I="; hash = "sha256-W6otdj1C3Nn3DUvwp9MPqMo2y4ITqgYrqlW/uxIj2YA=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = with python3.pkgs; [
python3.pkgs.click click
]; ];
nativeCheckInputs = [ nativeCheckInputs = with python3.pkgs; [
python3.pkgs.pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ "pur" ]; pythonImportsCheck = [
"pur"
];
meta = with lib; { meta = with lib; {
description = "Python library for update and track the requirements"; description = "Python library for update and track the requirements";
homepage = "https://github.com/alanhamlett/pip-update-requirements"; homepage = "https://github.com/alanhamlett/pip-update-requirements";
changelog = "https://github.com/alanhamlett/pip-update-requirements/blob/${version}/HISTORY.rst";
license = with licenses; [ bsd2 ]; license = with licenses; [ bsd2 ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };