pythonPackages.django-pglocks: init at 1.0.2

This commit is contained in:
betaboon
2017-08-31 21:15:35 +02:00
committed by Frederik Rietdijk
parent b80cb36cde
commit 28e186f429
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchPypi, django }:
buildPythonPackage rec {
pname = "django-pglocks";
name = "${pname}-${version}";
version = "1.0.2";
meta = {
description = "PostgreSQL locking context managers and functions for Django.";
homepage = https://github.com/Xof/django-pglocks;
license = lib.licenses.mit;
};
src = fetchPypi {
inherit pname version;
sha256 = "1ks4k0bk4457wfl3xgzr4v7xb0lxmnkhxwhlp0bbnmzipdafw1cl";
};
buildInputs = [ django ];
propagatedBuildInputs = [ django ];
# tests need a postgres database
doCheck = false;
}