My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/django_nose/default.nix

28 lines
549 B

{ lib
, buildPythonPackage
, fetchPypi
, nose
, django
}:
buildPythonPackage rec {
pname = "django-nose";
version = "1.4.7";
src = fetchPypi {
inherit pname version;
sha256 = "a4885cd002d65fd2de96e2bb2563ef477c3fbe207009360c015fca5c3b5561b7";
};
# vast dependency list
doCheck = false;
propagatedBuildInputs = [ django nose ];
meta = with lib; {
description = "Provides all the goodness of nose in your Django tests";
homepage = "https://github.com/django-nose/django-nose";
license = licenses.bsd3;
};
}