mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-29 12:35:10 +03:00
python3.python-jsonrpc-server: enable python38 build
This commit is contained in:
parent
8a9556a36a
commit
141a029ad7
1 changed files with 13 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
|
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
|
||||||
, pytest, mock, pytestcov, coverage
|
, pytest, mock, pytestcov, coverage
|
||||||
, future, futures, ujson, isPy38
|
, future, futures, ujson, isPy38
|
||||||
|
, fetchpatch
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -16,6 +17,8 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
sed -i 's/version=versioneer.get_version(),/version="${version}",/g' setup.py
|
sed -i 's/version=versioneer.get_version(),/version="${version}",/g' setup.py
|
||||||
|
# https://github.com/palantir/python-jsonrpc-server/issues/36
|
||||||
|
sed -i -e 's!ujson<=!ujson>=!' setup.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
|
@ -26,7 +29,16 @@ buildPythonPackage rec {
|
||||||
pytest
|
pytest
|
||||||
'';
|
'';
|
||||||
|
|
||||||
disabled = isPy38;
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/palantir/python-jsonrpc-server/commit/0a04cc4e9d44233b1038b12d63cd3bd437c2374e.patch";
|
||||||
|
sha256 = "177zdnp1808r2pg189bvzab44l8i2alsgv04kmrlhhnv40h66qyg";
|
||||||
|
})
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/palantir/python-jsonrpc-server/commit/5af6e43d0c1fb9a6a29b96d38cfd6dbeec85d0ea.patch";
|
||||||
|
sha256 = "1gx7lc1jxar1ngqqfkdn21s46y1mfnjf7ky2886ydk53nkaba91m";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ future ujson ]
|
propagatedBuildInputs = [ future ujson ]
|
||||||
++ stdenv.lib.optional (pythonOlder "3.2") futures;
|
++ stdenv.lib.optional (pythonOlder "3.2") futures;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue