1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 typing-extensions, 6}: 7 8buildPythonPackage rec { 9 pname = "stringly"; 10 version = "1.0b2"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "09fi9dgf27v4qi0mwwms7hpwim9qpyalckd66p7nlmfp6c8bzppq"; 16 }; 17 18 pythonImportsCheck = [ "stringly" ]; 19 20 propagatedBuildInputs = [ typing-extensions ]; 21 22 meta = with lib; { 23 description = "Stringly: Human Readable Object Serialization"; 24 homepage = "https://github.com/evalf/stringly"; 25 license = licenses.mit; 26 maintainers = [ maintainers.Scriptkiddi ]; 27 }; 28}