87f9c27ba9
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
29 lines
560 B
Nix
29 lines
560 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, django
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dj-database-url";
|
|
version = "1.3.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-h75ffEyD2bPYzpS4NPls6hSzmG82KarAl6/dkxjXsJg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
django
|
|
];
|
|
|
|
# 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;
|
|
};
|
|
}
|