python312Packages.osmnx: 1.9.3 → 2.0.0 (#360529)
[NixPkgs.git] / pkgs / development / python-modules / persisting-theory / default.nix
blob9dca828eb3672aed4f6efc152904dab06ea833d8
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "persisting-theory";
10   version = "1.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-D4QPoiJHvKpRQJTafzsmxgI1lCmrEtLNiL4GtJozYpA=";
16   };
18   nativeCheckInputs = [ pytestCheckHook ];
20   pythonImportsCheck = [ "persisting_theory" ];
22   meta = with lib; {
23     homepage = "https://code.agate.blue/agate/persisting-theory";
24     description = "Automate data discovering and access inside a list of packages";
25     license = licenses.bsd3;
26     maintainers = with maintainers; [ mmai ];
27   };