Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 573 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, nose 5, forbiddenfruit 6}: 7 8buildPythonPackage rec { 9 version = "0.1.0"; 10 pname = "shouldbe"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "07pchxpv1xvjbck0xy44k3a1jrvklg0wbyccn14w0i7d135d4174"; 15 }; 16 17 buildInputs = [ nose ]; 18 propagatedBuildInputs = [ forbiddenfruit ]; 19 20 doCheck = false; # Segmentation fault on py 3.5 21 22 meta = with stdenv.lib; { 23 description = "Python Assertion Helpers inspired by Shouldly"; 24 homepage = https://pypi.python.org/pypi/shouldbe/; 25 license = licenses.mit; 26 }; 27 28}