depot/third_party/nixpkgs/pkgs/development/python-modules/tdir/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

41 lines
760 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
dek,
xmod,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "tdir";
version = "1.8.2";
pyproject = true;
src = fetchFromGitHub {
owner = "rec";
repo = "tdir";
rev = "v${version}";
hash = "sha256-YYQ33Blhqk/CbocqkB9Nh6qbzMjQT07fmzx+fDTvdw8=";
};
build-system = [ poetry-core ];
dependencies = [
dek
xmod
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "tdir" ];
meta = with lib; {
description = "Create, fill a temporary directory";
homepage = "https://github.com/rec/tdir";
changelog = "https://github.com/rec/tdir/blob/${src.rev}/CHANGELOG";
license = licenses.mit;
maintainers = [ ];
};
}