Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / django-pglocks / default.nix
bloba84850a1fda973746d2c14d44488bcd1cc71f92a
1 { lib, buildPythonPackage, fetchPypi, django, six }:
3 buildPythonPackage rec {
4   pname = "django-pglocks";
5   version = "1.0.4";
7   meta = {
8     description = "PostgreSQL locking context managers and functions for Django.";
9     homepage = "https://github.com/Xof/django-pglocks";
10     license = lib.licenses.mit;
11   };
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "3c47c66fbfbd268ef46269673a0516a039539b0972b8ed2ec9cfee44c4b65523";
16   };
18   buildInputs = [ django ];
19   propagatedBuildInputs = [ django six ];
21   # tests need a postgres database
22   doCheck = false;