Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / persisting-theory / default.nix
blob0890f86fc160c5d2f432249234c7ea59988565ac
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "persisting-theory";
9   version = "1.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-D4QPoiJHvKpRQJTafzsmxgI1lCmrEtLNiL4GtJozYpA=";
15   };
17   nativeCheckInputs = [
18     pytestCheckHook
19   ];
21   pythonImportsCheck = [ "persisting_theory" ];
23   meta = with lib; {
24     homepage = "https://code.agate.blue/agate/persisting-theory";
25     description = "Automate data discovering and access inside a list of packages";
26     license = licenses.bsd3;
27     maintainers = with maintainers; [ mmai ];
28   };