1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 pname = "prefixed"; 9 version = "0.3.2"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "ca48277ba5fa8346dd4b760847da930c7b84416387c39e93affef086add2c029"; 14 }; 15 16 checkInputs = [ pytestCheckHook ]; 17 18 pythonImportsCheck = [ "prefixed" ]; 19 20 meta = with lib; { 21 description = "Prefixed alternative numeric library"; 22 homepage = "https://github.com/Rockhopper-Technologies/prefixed"; 23 license = with licenses; [ mpl20 ]; 24 maintainers = with maintainers; [ veprbl ]; 25 }; 26}