1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-01 05:19:17 +03:00

python3Packages.dj-database-url: 0.5.0 -> 1.0.0

This commit is contained in:
Martin Weinelt 2022-09-14 23:36:07 +02:00
parent c876b71f61
commit d469728bf8

View file

@ -1,14 +1,23 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib
, buildPythonPackage
, fetchPypi
, django
}:
buildPythonPackage rec {
pname = "dj-database-url";
version = "0.5.0";
version = "1.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "4aeaeb1f573c74835b0686a2b46b85990571159ffc21aa57ecd4d1e1cb334163";
hash = "sha256-zPPocY913dFHoeIS/KiO7NqnIXWe5I44tIVIHHe8o9w=";
};
propagatedBuildInputs = [
django
];
# Tests access a DB via network
doCheck = false;