summary refs log blame commit diff
path: root/pkgs/development/python-modules/shouldbe/default.nix
blob: ccff9ff4b9f889c3f0f91df1aed8727a16689a3e (plain) (tree)
1
2
3
4
5
6
7
8
9







                        
                    



                          
                                                                    

    
                         

                                             






                                                                  
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, forbiddenfruit
}:

buildPythonPackage rec {
  version = "0.1.2";
  pname = "shouldbe";

  src = fetchPypi {
    inherit pname version;
    sha256 = "16zbvjxf71dl4yfbgcr6idyim3mdrfvix1dv8b95p0s9z07372pj";
  };

  checkInputs = [ nose ];
  propagatedBuildInputs = [ forbiddenfruit ];

  meta = with stdenv.lib; {
    description = "Python Assertion Helpers inspired by Shouldly";
    homepage =  https://pypi.python.org/pypi/shouldbe/;
    license = licenses.mit;
  };

}