1{ lib , python, buildPythonPackage , fetchPypi, typing-extensions }:
2
3buildPythonPackage rec {
4 pname = "stringly";
5 version = "1.0b2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "09fi9dgf27v4qi0mwwms7hpwim9qpyalckd66p7nlmfp6c8bzppq";
10 };
11
12 pythonImportsCheck = [ "stringly" ];
13
14 propagatedBuildInputs = [
15 typing-extensions
16 ];
17
18 checkPhase = ''
19 ${python.interpreter} -m unittest
20 '';
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}