Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / persisting-theory / default.nix
blob6859b6264a8f60830a70fccb05763ce8d8164498
1 { lib, buildPythonPackage, fetchPypi
2 , nose
3 }:
5 buildPythonPackage rec {
6   pname = "persisting-theory";
7   version = "0.2.1";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "02hcg7js23yjyw6gwxqzvyv2b1wfjrypk98cfxfgf7s8iz67vzq0";
12   };
14   checkInputs = [ nose ];
16   checkPhase = "nosetests";
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   };