summary refs log tree commit diff
path: root/pkgs/development/python-modules/persisting-theory/default.nix
blob: ca14f80868c8c07c26432e848bc40ed8de8b5619 (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
{ stdenv, buildPythonPackage, fetchPypi
, nose
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "02hcg7js23yjyw6gwxqzvyv2b1wfjrypk98cfxfgf7s8iz67vzq0";
  };

  checkInputs = [ nose ];

  checkPhase = "nosetests";

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