at master 589 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pytestCheckHook, 6 pytest-cov-stub, 7}: 8 9buildPythonPackage rec { 10 pname = "plaster"; 11 version = "1.1.2"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-+L78VL+MEUfBCrQCl+yEwmdvotTqXW9STZQ2qAB075g="; 17 }; 18 19 nativeCheckInputs = [ 20 pytestCheckHook 21 pytest-cov-stub 22 ]; 23 24 meta = { 25 description = "Loader interface around multiple config file formats"; 26 homepage = "https://pypi.org/project/plaster/"; 27 license = lib.licenses.mit; 28 maintainers = with lib.maintainers; [ ]; 29 }; 30}