Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 28 lines 545 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, nose 5, django 6}: 7 8buildPythonPackage rec { 9 pname = "django-nose"; 10 version = "1.4.6"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "01wah0ci5xdpiikash68x6lprxlvnkxg72ly9kjrc9lklq34m4sq"; 15 }; 16 17 # vast dependency list 18 doCheck = false; 19 20 propagatedBuildInputs = [ django nose ]; 21 22 meta = with stdenv.lib; { 23 description = "Provides all the goodness of nose in your Django tests"; 24 homepage = https://github.com/django-nose/django-nose; 25 license = licenses.bsd3; 26 }; 27 28}