1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 flit-core,
6 typing-extensions,
7}:
8
9buildPythonPackage rec {
10 pname = "stringly";
11 version = "1.0b3";
12 pyproject = true;
13
14 src = fetchFromGitHub {
15 owner = "evalf";
16 repo = "stringly";
17 tag = "v${version}";
18 hash = "sha256-OAATONkok9M2pVoChtwWMPPU/bhAxGf+BFawy9g3iZI=";
19 };
20
21 build-system = [ flit-core ];
22
23 dependencies = [ typing-extensions ];
24
25 pythonImportsCheck = [ "stringly" ];
26
27 doCheck = false; # no tests
28
29 meta = with lib; {
30 description = "Stringly: Human Readable Object Serialization";
31 homepage = "https://github.com/evalf/stringly";
32 license = licenses.mit;
33 maintainers = [ maintainers.Scriptkiddi ];
34 };
35}