1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 pname = "persisting-theory"; 9 version = "1.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "sha256-D4QPoiJHvKpRQJTafzsmxgI1lCmrEtLNiL4GtJozYpA="; 14 }; 15 16 checkInputs = [ 17 pytestCheckHook 18 ]; 19 20 pythonImportsCheck = [ "persisting_theory" ]; 21 22 meta = with lib; { 23 homepage = "https://code.agate.blue/agate/persisting-theory"; 24 description = "Automate data discovering and access inside a list of packages"; 25 license = licenses.bsd3; 26 maintainers = with maintainers; [ mmai ]; 27 }; 28}