Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / django-nose / default.nix
blob86aa7b3a4e4a5ed706c158292afe9f21d3a42a79
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 , django
6 }:
8 buildPythonPackage rec {
9   pname = "django-nose";
10   version = "1.4.7";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "a4885cd002d65fd2de96e2bb2563ef477c3fbe207009360c015fca5c3b5561b7";
16   };
18   # vast dependency list
19   doCheck = false;
21   propagatedBuildInputs = [ django nose ];
23   meta = with lib; {
24     description = "Provides all the goodness of nose in your Django tests";
25     homepage = "https://github.com/django-nose/django-nose";
26     license = licenses.bsd3;
27   };