nixpkgs/pkgs/by-name/pu/pur/package.nix
2025-06-07 00:48:50 +02:00

42 lines
1.0 KiB
Nix

{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication rec {
pname = "pur";
version = "7.3.3";
pyproject = true;
src = fetchFromGitHub {
owner = "alanhamlett";
repo = "pip-update-requirements";
tag = version;
hash = "sha256-zSEzYYpDmu3fennTZNvQjAoMekzxoMDUEqvSjN6hNUk=";
};
build-system = with python3.pkgs; [ setuptools ];
dependencies = with python3.pkgs; [ click ];
nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ];
pythonImportsCheck = [ "pur" ];
disabledTests = [
# Tests are failing after the last mass update
"test_missing_requirements_file"
"test_no_arguments_and_no_requirements_file"
];
meta = {
description = "Python library for update and track the requirements";
homepage = "https://github.com/alanhamlett/pip-update-requirements";
changelog = "https://github.com/alanhamlett/pip-update-requirements/blob/${version}/HISTORY.rst";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "pur";
};
}