blob: 98d189d62b1cc73f943eeda33103730f3b83a3be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ stdenv, fetchPypi, buildPythonPackage, pytest, tox }:
buildPythonPackage rec {
version = "1.0.0";
pname = "pluginbase";
buildInputs = [ pytest tox ];
src = fetchPypi {
inherit pname version;
sha256 = "497894df38d0db71e1a4fbbfaceb10c3ef49a3f95a0582e11b75f8adaa030005";
};
meta = with stdenv.lib; {
homepage = https://github.com/mitsuhiko/pluginbase;
description = "A support library for building plugins sytems in Python";
license = licenses.bsd3;
platforms = platforms.all;
};
}
|