Files
nixpkgs/pkgs/development/python-modules/plaster/default.nix
Wolfgang Walther c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

31 lines
567 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "plaster";
version = "1.1.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-+L78VL+MEUfBCrQCl+yEwmdvotTqXW9STZQ2qAB075g=";
};
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
meta = {
description = "Loader interface around multiple config file formats";
homepage = "https://pypi.org/project/plaster/";
license = lib.licenses.mit;
maintainers = [ ];
};
}