fd9a491587
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-django-nose/versions
29 lines
545 B
Nix
29 lines
545 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
, django
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-nose";
|
|
version = "1.4.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "01wah0ci5xdpiikash68x6lprxlvnkxg72ly9kjrc9lklq34m4sq";
|
|
};
|
|
|
|
# vast dependency list
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ django nose ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Provides all the goodness of nose in your Django tests";
|
|
homepage = https://github.com/django-nose/django-nose;
|
|
license = licenses.bsd3;
|
|
};
|
|
|
|
}
|