1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 six, 6 unidecode, 7 pytestCheckHook, 8}: 9 10buildPythonPackage rec { 11 pname = "preggy"; 12 version = "1.4.4"; 13 format = "setuptools"; 14 15 propagatedBuildInputs = [ 16 six 17 unidecode 18 ]; 19 nativeCheckInputs = [ pytestCheckHook ]; 20 21 src = fetchPypi { 22 inherit pname version; 23 sha256 = "25ba803afde4f35ef543a60915ced2e634926235064df717c3cb3e4e3eb4670c"; 24 }; 25 26 meta = with lib; { 27 description = "Assertion library for Python"; 28 homepage = "http://heynemann.github.io/preggy/"; 29 license = licenses.mit; 30 maintainers = with maintainers; [ jluttine ]; 31 }; 32}