blob: 88e564ac852f85ec4372087d719dffdd6075c039 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
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 = [ ];
};
}
|