nixpkgs/pkgs/development/tools/pur/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
875 B
Nix
Raw Normal View History

2021-04-17 20:53:19 +00:00
{ lib
, python3
2021-04-17 20:53:19 +00:00
, fetchFromGitHub
}:
2022-04-22 22:17:38 +00:00
python3.pkgs.buildPythonApplication rec {
2021-04-17 20:53:19 +00:00
pname = "pur";
2024-01-19 20:50:42 +00:00
version = "7.3.1";
2024-01-21 09:50:57 +00:00
format = "setuptools";
2021-04-17 20:53:19 +00:00
src = fetchFromGitHub {
owner = "alanhamlett";
repo = "pip-update-requirements";
2022-05-11 00:16:43 +00:00
rev = "refs/tags/${version}";
2024-01-19 20:50:42 +00:00
hash = "sha256-W6otdj1C3Nn3DUvwp9MPqMo2y4ITqgYrqlW/uxIj2YA=";
2021-04-17 20:53:19 +00:00
};
2024-01-21 09:50:57 +00:00
propagatedBuildInputs = with python3.pkgs; [
click
2021-04-17 20:53:19 +00:00
];
2024-01-21 09:50:57 +00:00
nativeCheckInputs = with python3.pkgs; [
pytestCheckHook
2021-04-17 20:53:19 +00:00
];
2024-01-21 09:50:57 +00:00
pythonImportsCheck = [
"pur"
];
2021-04-17 20:53:19 +00:00
meta = with lib; {
description = "Python library for update and track the requirements";
homepage = "https://github.com/alanhamlett/pip-update-requirements";
2024-01-21 09:50:57 +00:00
changelog = "https://github.com/alanhamlett/pip-update-requirements/blob/${version}/HISTORY.rst";
2021-04-17 20:53:19 +00:00
license = with licenses; [ bsd2 ];
maintainers = with maintainers; [ fab ];
};
}