summary refs log tree commit diff
path: root/pkgs/development/python-modules/shouldbe/default.nix
blob: 9959f26036cfb550149ef702c80dd0b04bb70153 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, stdenv
, 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;
  };

}