Files
nixpkgs/pkgs/development/python-modules/hatch-requirements-txt/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

41 lines
921 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";
tag = "v${version}";
hash = "sha256-Kd3rDfTBn/t/NiSJMPkHRWD5solUF7MAN8EiZokxHrk=";
};
nativeBuildInputs = [ hatchling ];
propagatedBuildInputs = [
hatchling
packaging
];
doCheck = false; # missing coincidence dependency
nativeCheckInputs = [ pytestCheckHook ];
meta = {
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 = lib.licenses.mit;
maintainers = [ ];
};
}