mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
Merge pull request #92279 from jonringer/prawcore-disable-py2
python2Packages.prawcore: disable on python2
This commit is contained in:
commit
eb7113f2c0
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi
|
{ stdenv, buildPythonPackage, fetchPypi, isPy27
|
||||||
, requests
|
, requests
|
||||||
, testfixtures, mock, requests_toolbelt
|
, testfixtures, mock, requests_toolbelt
|
||||||
, betamax, betamax-serializers, betamax-matchers, pytest
|
, betamax, betamax-serializers, betamax-matchers, pytest
|
||||||
@ -7,6 +7,7 @@
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "prawcore";
|
pname = "prawcore";
|
||||||
version = "1.4.0";
|
version = "1.4.0";
|
||||||
|
disabled = isPy27; # see https://github.com/praw-dev/prawcore/pull/101
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
Loading…
Reference in New Issue
Block a user