10 buildPythonPackage rec {
11 pname = "hatch-requirements-txt";
15 src = fetchFromGitHub {
16 owner = "repo-helper";
17 repo = "hatch-requirements-txt";
19 hash = "sha256-Kd3rDfTBn/t/NiSJMPkHRWD5solUF7MAN8EiZokxHrk=";
22 nativeBuildInputs = [ hatchling ];
24 propagatedBuildInputs = [
29 doCheck = false; # missing coincidence dependency
31 nativeCheckInputs = [ pytestCheckHook ];
34 changelog = "https://github.com/repo-helper/hatch-requirements-txt/releases/tag/${version}";
35 description = "Hatchling plugin to read project dependencies from requirements.txt";
36 homepage = "https://github.com/repo-helper/hatch-requirements-txt";
37 license = licenses.mit;