depot/third_party/nixpkgs/pkgs/development/python-modules/hatch-requirements-txt/default.nix
Default email 686ce24904 Project import generated by Copybara.
GitOrigin-RevId: ac1f5b72a9e95873d1de0233fddcb56f99884b37
2023-02-16 18:41:37 +01:00

44 lines
960 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, packaging
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "hatch-requirements-txt";
version = "0.3.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "repo-helper";
repo = "hatch-requirements-txt";
rev = "refs/tags/v${version}";
hash = "sha256-Gyt5Fs8uqVe0cOKtxFeg1n1WMyeK5Iokh71ynb2i5cM=";
};
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 = with maintainers; [ ];
};
}