fix build (#708)
This commit is contained in:
parent
420648f5f1
commit
e878dd51fe
|
@ -138,3 +138,6 @@ dmypy.json
|
||||||
|
|
||||||
# pycharm
|
# pycharm
|
||||||
.idea/
|
.idea/
|
||||||
|
|
||||||
|
# nix build
|
||||||
|
/result
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
python3Packages,
|
python3Packages,
|
||||||
pkgs,
|
pkgs,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
|
fetchPypi,
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
|
|
||||||
|
@ -24,6 +25,14 @@ let
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
requests = python3Packages.requests.overrideAttrs (oldAttrs: {
|
||||||
|
src = fetchPypi {
|
||||||
|
pname = "requests";
|
||||||
|
version = "2.32.1";
|
||||||
|
hash = "sha256-65fofmTHnmTluKx1zundH5f0niibCD7mvpYmiTByVoU=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
in
|
in
|
||||||
python3Packages.buildPythonPackage {
|
python3Packages.buildPythonPackage {
|
||||||
# use pyproject.toml instead of setup.py
|
# use pyproject.toml instead of setup.py
|
||||||
|
|
Loading…
Reference in New Issue