1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytestCheckHook,
6}:
7
8buildPythonPackage rec {
9 pname = "persisting-theory";
10 version = "1.0";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-D4QPoiJHvKpRQJTafzsmxgI1lCmrEtLNiL4GtJozYpA=";
16 };
17
18 nativeCheckInputs = [ pytestCheckHook ];
19
20 pythonImportsCheck = [ "persisting_theory" ];
21
22 meta = with lib; {
23 homepage = "https://code.agate.blue/agate/persisting-theory";
24 description = "Automate data discovering and access inside a list of packages";
25 license = licenses.bsd3;
26 maintainers = with maintainers; [ mmai ];
27 };
28}