depot/third_party/nixpkgs/pkgs/development/python-modules/sure/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

29 lines
541 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, rednose
, six
, mock
, isPyPy
}:
buildPythonPackage rec {
pname = "sure";
version = "1.4.11";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
sha256 = "3c8d5271fb18e2c69e2613af1ad400d8df090f1456081635bd3171847303cdaa";
};
buildInputs = [ rednose ];
propagatedBuildInputs = [ six mock ];
meta = with lib; {
description = "Utility belt for automated testing";
homepage = "https://sure.readthedocs.io/en/latest/";
license = licenses.gpl3Plus;
};
}