about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/napari-plugin-engine/default.nix
blob: 802b25e8df14ffd1408ace31e42d5eff60589a0e (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
25
26
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools-scm
, pytestCheckHook
}: buildPythonPackage rec {
  pname = "napari-plugin-engine";
  version = "0.2.0";
  src = fetchFromGitHub {
    owner = "napari";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-cKpCAEYYRq3UPje7REjzhEe1J9mmrtXs8TBnxWukcNE=";
  };
  nativeBuildInputs = [ setuptools-scm ];
  checkInputs = [ pytestCheckHook ];
  doCheck = false;
  SETUPTOOLS_SCM_PRETEND_VERSION = version;

  meta = with lib; {
    description = "A fork of pluggy for napari - plugin management package";
    homepage = "https://github.com/napari/napari-plugin-engine";
    license = licenses.mit;
    maintainers = with maintainers; [ SomeoneSerge ];
  };
}