about summary refs log tree commit diff
path: root/pkgs/development/python-modules/persisting-theory/default.nix
blob: eb9b8cbdd69f4b9b618282f882b9a003e3b34d6f (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "persisting-theory";
  version = "1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-D4QPoiJHvKpRQJTafzsmxgI1lCmrEtLNiL4GtJozYpA=";
  };

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [ "persisting_theory" ];

  meta = with lib; {
    homepage = "https://code.agate.blue/agate/persisting-theory";
    description = "Automate data discovering and access inside a list of packages";
    license = licenses.bsd3;
    maintainers = with maintainers; [ mmai ];
  };
}