python.pkgs.django_extensions: fix build
This commit is contained in:
parent
598232b443
commit
28e98fdfbc
@ -1,4 +1,4 @@
|
|||||||
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
|
{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch, pythonOlder
|
||||||
, six, typing, pygments
|
, six, typing, pygments
|
||||||
, django, shortuuid, python-dateutil, pytest
|
, django, shortuuid, python-dateutil, pytest
|
||||||
, pytest-django, pytestcov, mock, vobject
|
, pytest-django, pytestcov, mock, vobject
|
||||||
@ -16,6 +16,15 @@ buildPythonPackage rec {
|
|||||||
sha256 = "0053yqq4vq3mwy7zkfs5vfm3g8j9sfy3vrc6xby83qlj9wz43ipi";
|
sha256 = "0053yqq4vq3mwy7zkfs5vfm3g8j9sfy3vrc6xby83qlj9wz43ipi";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# This patch fixes a single failing test and can be removed when updating this pkg
|
||||||
|
# to the next version
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/django-extensions/django-extensions/commit/1d21786da2e6868d98ae34c82079e1e03ad1aa97.patch";
|
||||||
|
sha256 = "0d81zpj0f8a7ijrfb12j0b67fgj89k3axaskz1nwqsr4wc6n4bw2";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace setup.py --replace "'tox'," ""
|
substituteInPlace setup.py --replace "'tox'," ""
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user