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