1{ stdenv, buildPythonPackage, fetchPypi 2, setuptools_scm, pathpy, nbconvert 3, pytest }: 4 5buildPythonPackage rec { 6 pname = "zetup"; 7 version = "0.2.43"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "ee92ba93a03336962525536f237ae0decf99a9b5d484ba34a3cf06ef017dae8e"; 12 }; 13 14 checkPhase = '' 15 py.test test 16 ''; 17 18 checkInputs = [ pytest pathpy nbconvert ]; 19 propagatedBuildInputs = [ setuptools_scm ]; 20 21 meta = with stdenv.lib; { 22 description = '' 23 Zimmermann's Extensible Tools for Unified Project setups 24 ''; 25 homepage = https://github.com/zimmermanncode/zetup; 26 license = licenses.gpl3Plus; 27 platforms = platforms.linux; 28 }; 29}