blob: 5f6ff5f7e7daa17bf9a386ffbe841948b714c4c6 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "persisting-theory";
version = "1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-D4QPoiJHvKpRQJTafzsmxgI1lCmrEtLNiL4GtJozYpA=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "persisting_theory" ];
meta = {
homepage = "https://code.agate.blue/agate/persisting-theory";
description = "Automate data discovering and access inside a list of packages";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ mmai ];
};
}
|