mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
50 lines
914 B
Nix
50 lines
914 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, django
|
|
, netaddr
|
|
, six
|
|
, fetchFromGitHub
|
|
# required for tests
|
|
#, djangorestframework
|
|
#, psycopg2
|
|
#, unittest2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.2.2";
|
|
pname = "django-postgresql-netfields";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jimfunk";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1rrh38f3zl3jk5ijs6g75dxxvxygf4lczbgc7ahrgzf58g4a48lm";
|
|
};
|
|
|
|
# tests need a postgres database
|
|
doCheck = false;
|
|
|
|
# keeping the dependencies below as comment for reference
|
|
# checkPhase = ''
|
|
# python manage.py test
|
|
# '';
|
|
|
|
# buildInputs = [
|
|
# djangorestframework
|
|
# psycopg2
|
|
# unittest2
|
|
# ];
|
|
|
|
propagatedBuildInputs = [
|
|
django
|
|
netaddr
|
|
six
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Django PostgreSQL netfields implementation";
|
|
homepage = "https://github.com/jimfunk/django-postgresql-netfields";
|
|
license = licenses.bsd2;
|
|
};
|
|
}
|