My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/django-pglocks/default.nix

23 lines
578 B

{ lib, buildPythonPackage, fetchPypi, django, six }:
buildPythonPackage rec {
pname = "django-pglocks";
version = "1.0.4";
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 = "3c47c66fbfbd268ef46269673a0516a039539b0972b8ed2ec9cfee44c4b65523";
};
buildInputs = [ django ];
propagatedBuildInputs = [ django six ];
# tests need a postgres database
doCheck = false;
}