Files
nixpkgs/pkgs/development/python-modules/hatch-requirements-txt/default.nix
T
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

41 lines
937 B
Nix

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