about summary refs log tree commit diff
path: root/pkgs/development/python-modules/plugnplay/default.nix
blob: 4882641e538ea028c8e1bd57be4c3e58a5601083 (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
27
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:
buildPythonPackage rec {
  pname = "plugnplay";
  version = "0.5.4";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "877e2d2500a45aaf31e5175f9f46182088d3e2d64c1c6b9ff6c778ae0ee594c8";
  };

  # no tests
  doCheck = false;

  pythonImportsCheck = [ "plugnplay" ];

  meta = with lib; {
    description = "Generic plug-in system for python applications";
    homepage = "https://github.com/daltonmatos/plugnplay";
    license = licenses.gpl2Only;
    maintainers = [ ];
  };
}