pythonPackages.pluginbase: init at 0.5

This commit is contained in:
mucaho 2017-04-13 01:38:01 +02:00
parent 80c295f50f
commit acf45e0f9c
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, fetchPypi, buildPythonPackage, pytest, tox }:
buildPythonPackage rec {
name = "${pname}-${version}";
version = "0.5";
pname = "pluginbase";
buildInputs = [ pytest tox ];
src = fetchPypi {
inherit pname version;
sha256 = "1palagrlszs4f4f5j6npzl4d195vclrlza3qr524z2h758j31y5l";
};
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;
};
}

View File

@ -32191,6 +32191,8 @@ EOF
nitpick = callPackage ../applications/version-management/nitpick { };
pluginbase = callPackage ../development/python-modules/pluginbase { };
distro = callPackage ../development/python-modules/distro { };
});