{ lib , buildPythonPackage , fetchPypi , pythonOlder , decorator , appdirs , six , numpy , pytest }: buildPythonPackage rec { pname = "pytools"; version = "2021.2.9"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; sha256 = "db6cf83c9ba0a165d545029e2301621486d1e9ef295684072e5cd75316a13755"; }; checkInputs = [ pytest ]; propagatedBuildInputs = [ decorator appdirs six numpy ]; checkPhase = '' py.test -k 'not test_persistent_dict' ''; meta = { homepage = "https://github.com/inducer/pytools/"; description = "Miscellaneous Python lifesavers."; license = lib.licenses.mit; maintainers = with lib.maintainers; [ artuuge ]; }; }