pythonPackages.pluginbase: init at 0.5
This commit is contained in:
parent
80c295f50f
commit
acf45e0f9c
21
pkgs/development/python-modules/pluginbase/default.nix
Normal file
21
pkgs/development/python-modules/pluginbase/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -32191,6 +32191,8 @@ EOF
|
||||
|
||||
nitpick = callPackage ../applications/version-management/nitpick { };
|
||||
|
||||
pluginbase = callPackage ../development/python-modules/pluginbase { };
|
||||
|
||||
distro = callPackage ../development/python-modules/distro { };
|
||||
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user