Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / django-environ / default.nix
blobb0e3f6eb0c40bf529312c7b6362e578c33d97589
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , django
5 , six
6 }:
8 buildPythonPackage rec {
9   pname = "django-environ";
10   version = "0.11.2";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-8yqHqgiZiUwn1OF3b6a0d+gWTtf2s+QQpiptcsqvZL4=";
15   };
17   # The testsuite fails to modify the base environment
18   doCheck = false;
19   propagatedBuildInputs = [ django six ];
21   meta = with lib; {
22     description = "Utilize environment variables to configure your Django application";
23     homepage = "https://github.com/joke2k/django-environ/";
24     license = licenses.mit;
25   };