Files
Acid Bong 91b3c26dcd python3Packages.hatch-requirements-txt: remove changelog
neither GitHub release notes nor the repo itself contain any changelog
2026-07-21 18:12:10 +03:00

40 lines
820 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
packaging,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "hatch-requirements-txt";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "repo-helper";
repo = "hatch-requirements-txt";
tag = "v${version}";
hash = "sha256-Kd3rDfTBn/t/NiSJMPkHRWD5solUF7MAN8EiZokxHrk=";
};
nativeBuildInputs = [ hatchling ];
propagatedBuildInputs = [
hatchling
packaging
];
doCheck = false; # missing coincidence dependency
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Hatchling plugin to read project dependencies from requirements.txt";
homepage = "https://github.com/repo-helper/hatch-requirements-txt";
license = lib.licenses.mit;
maintainers = [ ];
};
}