Merge pull request #301718 from r-ryantm/auto-update/python312Packages.requirements-parser

python312Packages.requirements-parser: 0.7.0 -> 0.9.0
This commit is contained in:
Fabian Affolter 2024-04-05 23:44:04 +02:00 committed by GitHub
commit 13cbab176c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 19 deletions

View File

@ -1,16 +1,17 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pythonOlder
, setuptools
, types-setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
pythonOlder,
setuptools,
types-setuptools,
}:
buildPythonPackage rec {
pname = "requirements-parser";
version = "0.7.0";
version = "0.9.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -19,25 +20,19 @@ buildPythonPackage rec {
owner = "madpah";
repo = "requirements-parser";
rev = "refs/tags/v${version}";
hash = "sha256-P1uMpg9uoPp18KwdBHkvpMGV8eKhTEsDCKwz2JsTOug=";
hash = "sha256-ZkyfK2s6wmKX/AJsOXlAHOpJ2/zZO0zipdM3j2BrrWo=";
};
build-system = [
poetry-core
];
build-system = [ poetry-core ];
dependencies = [
setuptools
types-setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"requirements"
];
pythonImportsCheck = [ "requirements" ];
meta = with lib; {
description = "Pip requirements file parser";