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

29 lines
632 B
Nix

{ lib
, buildPythonPackage
, pythonAtLeast
, fetchPypi
, nose
, forbiddenfruit
}:
buildPythonPackage rec {
version = "0.1.2";
pname = "shouldbe";
# incompatible, https://github.com/DirectXMan12/should_be/issues/4
disabled = pythonAtLeast "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "16zbvjxf71dl4yfbgcr6idyim3mdrfvix1dv8b95p0s9z07372pj";
};
checkInputs = [ nose ];
propagatedBuildInputs = [ forbiddenfruit ];
meta = with lib; {
description = "Python Assertion Helpers inspired by Shouldly";
homepage = "https://pypi.python.org/pypi/shouldbe/";
license = licenses.mit;
};
}