nixpkgs/pkgs/development/python-modules/python-toolbox/default.nix

34 lines
604 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, docutils
, fetchFromGitHub
, isPy27
, nose
2020-05-21 13:55:28 +02:00
, pytest
}:
buildPythonPackage rec {
2020-05-21 13:55:28 +02:00
version = "1.0.10";
pname = "python_toolbox";
disabled = isPy27;
src = fetchFromGitHub {
owner = "cool-RR";
repo = pname;
rev = version;
2020-05-21 13:55:28 +02:00
sha256 = "1hpls1hwisdjx1g15cq052bdn9fvh43r120llws8bvgvj9ivnaha";
};
checkInputs = [
docutils
2020-05-21 13:55:28 +02:00
pytest
];
meta = with lib; {
description = "Tools for testing PySnooper";
homepage = "https://github.com/cool-RR/python_toolbox";
license = licenses.mit;
maintainers = with maintainers; [ seqizz ];
};
}