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
, buildPythonPackage
3
, fetchPypi
4
, poetry-core
0
5
}:
6
7
buildPythonPackage rec {
8
pname = "django-types";
9
version = "0.19.1";
10
-
format = "pyproject";
11
12
src = fetchPypi {
13
-
inherit pname version;
0
14
hash = "sha256-WueYhhLPb7w1ewGLvDs6h4tl4EJ1zEbg011mpwja/xI=";
15
};
16
17
-
nativeBuildInputs = [ poetry-core ];
0
0
0
0
0
0
18
19
meta = with lib; {
20
description = "Type stubs for Django";
21
-
homepage = "https://pypi.org/project/django-types";
22
license = licenses.mit;
23
maintainers = with maintainers; [ thubrecht ];
24
};
···
2
, buildPythonPackage
3
, fetchPypi
4
, poetry-core
5
+
, types-psycopg2
6
}:
7
8
buildPythonPackage rec {
9
pname = "django-types";
10
version = "0.19.1";
11
+
pyproject = true;
12
13
src = fetchPypi {
14
+
pname = "django_types";
15
+
inherit version;
16
hash = "sha256-WueYhhLPb7w1ewGLvDs6h4tl4EJ1zEbg011mpwja/xI=";
17
};
18
19
+
nativeBuildInputs = [
20
+
poetry-core
21
+
];
22
+
23
+
propagatedBuildInputs = [
24
+
types-psycopg2
25
+
];
26
27
meta = with lib; {
28
description = "Type stubs for Django";
29
+
homepage = "https://github.com/sbdchd/django-types";
30
license = licenses.mit;
31
maintainers = with maintainers; [ thubrecht ];
32
};