tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.django-types: fix build
Martin Weinelt
2 years ago
3b8486ea
abb1103e
+12
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
django-types
default.nix
+12
-4
pkgs/development/python-modules/django-types/default.nix
···
2
2
, buildPythonPackage
3
3
, fetchPypi
4
4
, poetry-core
5
5
+
, types-psycopg2
5
6
}:
6
7
7
8
buildPythonPackage rec {
8
9
pname = "django-types";
9
10
version = "0.19.1";
10
10
-
format = "pyproject";
11
11
+
pyproject = true;
11
12
12
13
src = fetchPypi {
13
13
-
inherit pname version;
14
14
+
pname = "django_types";
15
15
+
inherit version;
14
16
hash = "sha256-WueYhhLPb7w1ewGLvDs6h4tl4EJ1zEbg011mpwja/xI=";
15
17
};
16
18
17
17
-
nativeBuildInputs = [ poetry-core ];
19
19
+
nativeBuildInputs = [
20
20
+
poetry-core
21
21
+
];
22
22
+
23
23
+
propagatedBuildInputs = [
24
24
+
types-psycopg2
25
25
+
];
18
26
19
27
meta = with lib; {
20
28
description = "Type stubs for Django";
21
21
-
homepage = "https://pypi.org/project/django-types";
29
29
+
homepage = "https://github.com/sbdchd/django-types";
22
30
license = licenses.mit;
23
31
maintainers = with maintainers; [ thubrecht ];
24
32
};