evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / napari-plugin-engine / default.nix
blob63ad78e96617f5ba4b3ae7711b0a300f117086bc
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools-scm,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "napari-plugin-engine";
11   version = "0.2.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.8";
16   src = fetchFromGitHub {
17     owner = "napari";
18     repo = pname;
19     rev = "refs/tags/v${version}";
20     hash = "sha256-cKpCAEYYRq3UPje7REjzhEe1J9mmrtXs8TBnxWukcNE=";
21   };
23   nativeBuildInputs = [ setuptools-scm ];
25   # Circular dependency: napari
26   doCheck = false;
28   pythonImportsCheck = [ "napari_plugin_engine" ];
30   meta = with lib; {
31     description = "First generation napari plugin engine";
32     homepage = "https://github.com/napari/napari-plugin-engine";
33     license = licenses.mit;
34     maintainers = with maintainers; [ SomeoneSerge ];
35   };