summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/simple/prison-break/straight-plugin.nix
blob: 606c60b5d4f273629c0a530d2a6a97e64a00e9fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "straight-plugin";
  version = "1.5.0";

  src = fetchPypi {
    pname = "straight.plugin";
    inherit version;
    sha256 = "818a7641068932ed6436d0af0a3bb77bbbde29df0a7142c8bd1a249e7c2f0d38";
  };

  meta = with lib; {
    description = "A simple namespaced plugin facility";
    homepage = https://github.com/ironfroggy/straight.plugin;
    license = licenses.mit;
    maintainers = [ maintainers.makefu ];
  };
}