1{ lib, buildPythonPackage, fetchPypi
2, nose
3}:
4
5buildPythonPackage rec {
6 pname = "persisting-theory";
7 version = "0.2.1";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "02hcg7js23yjyw6gwxqzvyv2b1wfjrypk98cfxfgf7s8iz67vzq0";
12 };
13
14 checkInputs = [ nose ];
15
16 checkPhase = "nosetests";
17
18 meta = with lib; {
19 homepage = "https://code.eliotberriot.com/eliotberriot/persisting-theory";
20 description = "Automate data discovering and access inside a list of packages";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ mmai ];
23 };
24}