dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git] / pkgs / development / python-modules / hatch-requirements-txt / default.nix
blobe324c50c82bd2c594b05b62bb30fe3cf58419cd8
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   hatchling,
6   packaging,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "hatch-requirements-txt";
12   version = "0.4.1";
13   format = "pyproject";
15   src = fetchFromGitHub {
16     owner = "repo-helper";
17     repo = "hatch-requirements-txt";
18     tag = "v${version}";
19     hash = "sha256-Kd3rDfTBn/t/NiSJMPkHRWD5solUF7MAN8EiZokxHrk=";
20   };
22   nativeBuildInputs = [ hatchling ];
24   propagatedBuildInputs = [
25     hatchling
26     packaging
27   ];
29   doCheck = false; # missing coincidence dependency
31   nativeCheckInputs = [ pytestCheckHook ];
33   meta = with lib; {
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;
38     maintainers = [ ];
39   };