summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/stringly/default.nix
blob: 37245f948f91419b39949225294dae7bc2cf6880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  flit-core,
  typing-extensions,
}:

buildPythonPackage rec {
  pname = "stringly";
  version = "1.0b3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "evalf";
    repo = "stringly";
    tag = "v${version}";
    hash = "sha256-OAATONkok9M2pVoChtwWMPPU/bhAxGf+BFawy9g3iZI=";
  };

  build-system = [ flit-core ];

  dependencies = [ typing-extensions ];

  pythonImportsCheck = [ "stringly" ];

  doCheck = false; # no tests

  meta = {
    description = "Stringly: Human Readable Object Serialization";
    homepage = "https://github.com/evalf/stringly";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.Scriptkiddi ];
  };
}