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