pythonPackages.python-toolbox: init at 0.9.4
This commit is contained in:
parent
d01cc96e0a
commit
08f1be27b5
32
pkgs/development/python-modules/python-toolbox/default.nix
Normal file
32
pkgs/development/python-modules/python-toolbox/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, docutils
|
||||
, fetchFromGitHub
|
||||
, isPy27
|
||||
, nose
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.9.4";
|
||||
pname = "python_toolbox";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cool-RR";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1qy2sfqfrkgxixmd22v5lkrdykdfiymsd2s3xa7ndlvg084cgj6r";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
docutils
|
||||
nose
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tools for testing PySnooper";
|
||||
homepage = https://github.com/cool-RR/python_toolbox;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ seqizz ];
|
||||
};
|
||||
}
|
@ -6641,6 +6641,8 @@ in {
|
||||
|
||||
pysensors = callPackage ../development/python-modules/pysensors { };
|
||||
|
||||
python-toolbox = callPackage ../development/python-modules/python-toolbox { };
|
||||
|
||||
sseclient = callPackage ../development/python-modules/sseclient { };
|
||||
|
||||
warrant = callPackage ../development/python-modules/warrant { };
|
||||
|
Loading…
Reference in New Issue
Block a user