tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.drf-spectacular: 0.22.1 -> 0.24.2
Sandro Jäckel
3 years ago
b22aa806
b7fddb65
+7
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
drf-spectacular
default.nix
+7
-2
pkgs/development/python-modules/drf-spectacular/default.nix
···
28
28
29
29
buildPythonPackage rec {
30
30
pname = "drf-spectacular";
31
31
-
version = "0.22.1";
31
31
+
version = "0.24.2";
32
32
33
33
src = fetchFromGitHub {
34
34
owner = "tfranzel";
35
35
repo = "drf-spectacular";
36
36
rev = version;
37
37
-
sha256 = "sha256-SgzyIzgFBXsNHfY2OfCq0LhJyi/ZCOSA8QveKNduIBc=";
37
37
+
sha256 = "sha256-WE+iOD3OjDByisHI9GgvjUUSpvOz+IYi/3Y8AmR7Eps=";
38
38
};
39
39
40
40
propagatedBuildInputs = [
···
64
64
psycopg2
65
65
pytest-django
66
66
pytestCheckHook
67
67
+
];
68
68
+
69
69
+
disabledTests = [
70
70
+
# requires django with gdal
71
71
+
"test_rest_framework_gis"
67
72
];
68
73
69
74
pythonImportsCheck = [ "drf_spectacular" ];