Skip to content

Commit

Permalink
pythonPackages.dj-database-url: init at 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz committed Mar 2, 2018
1 parent 143fd42 commit 7b525ac
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pkgs/development/python-modules/dj-database-url/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
pname = "dj-database-url";
version = "0.5.0";

src = fetchPypi {
inherit pname version;
sha256 = "4aeaeb1f573c74835b0686a2b46b85990571159ffc21aa57ecd4d1e1cb334163";
};

# Tests access a DB via network
doCheck = false;

meta = with lib; {
description = "Use Database URLs in your Django Application";
homepage = https://github.com/kennethreitz/dj-database-url;
license = licenses.bsd2;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7142,6 +7142,8 @@ in {
};
};

dj-database-url = callPackage ../development/python-modules/dj-database-url { };

djmail = callPackage ../development/python-modules/djmail { };

pillowfight = buildPythonPackage rec {
Expand Down

0 comments on commit 7b525ac

Please sign in to comment.