1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytoml 5, pytest 6}: 7 8buildPythonPackage rec { 9 pname = "intreehooks"; 10 version = "1.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "87e600d3b16b97ed219c078681260639e77ef5a17c0e0dbdd5a302f99b4e34e1"; 16 }; 17 18 propagatedBuildInputs = [ pytoml ]; 19 20 checkInputs = [ pytest ]; 21 22 meta = { 23 description = "Load a PEP 517 backend from inside the source tree"; 24 license = lib.licenses.mit; 25 maintainers = [ lib.maintainers.fridh ]; 26 homepage = "https://github.com/takluyver/intreehooks"; 27 }; 28}