blob: 326a0bb2a8603b5a93bcc9cc64f8faab3598eb09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
types-psycopg2,
}:
buildPythonPackage rec {
pname = "django-types";
version = "0.22.0";
pyproject = true;
src = fetchPypi {
pname = "django_types";
inherit version;
hash = "sha256-TOzJ7uhG5/8qOYvsnf5lQ+du+5IqeljF1gZLyw5qPcU=";
};
build-system = [ poetry-core ];
dependencies = [ types-psycopg2 ];
meta = {
description = "Type stubs for Django";
homepage = "https://github.com/sbdchd/django-types";
changelog = "https://github.com/sbdchd/django-types/blob/main/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nickcao ];
};
}
|