mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
pythonPackages.asana: 0.7.0 -> 0.7.1 (#44561)
Also fixed the package build from https://hydra.nixos.org/build/78900949. `requests_oauthlib` seems to work fine at version 1.0 with `asana`, so rather than creating our own override for `asana` it's fine to use 1.0 and patch `setup.py`.
This commit is contained in:
parent
040bbfab60
commit
ea36b975ab
@ -4,22 +4,21 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "asana";
|
||||
version = "0.7.0";
|
||||
version = "0.7.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "asana";
|
||||
repo = "python-asana";
|
||||
rev = "v${version}";
|
||||
sha256 = "0786y3wxqxxhsb0kkpx4bfzif3dhvv3dmm6vnq58iyj94862kpxf";
|
||||
sha256 = "0vmpy4j1n54gkkg0l8bhw0xf4yby5kqzxnsv07cjc2w38snj5vy1";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest responses ];
|
||||
propagatedBuildInputs = [ requests requests_oauthlib six ];
|
||||
|
||||
patchPhase = ''
|
||||
echo > requirements.txt
|
||||
sed -i "s/requests~=2.9.1/requests >=2.9.1/" setup.py
|
||||
sed -i "s/requests_oauthlib~=0.6.1/requests_oauthlib >=0.6.1/" setup.py
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "requests_oauthlib >= 0.8.0, == 0.8.*" "requests_oauthlib>=0.8.0<2.0"
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
|
Loading…
Reference in New Issue
Block a user