1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Disabled tests (since there don't seem to be any).

This commit is contained in:
Glenn Searby 2017-07-24 12:21:08 +01:00
parent 29540286ec
commit 12855b3d17

View file

@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "linode-api";
version = "4.1.1b2";
version = "4.1.1b2"; # NOTE: this is a beta, and the API may change in future versions.
name = "${pname}-${version}";
disabled = (pythonOlder "2.7");
@ -22,6 +22,8 @@ buildPythonPackage rec {
sed -i -e '/"enum34",/d' setup.py
'');
doCheck = false; # This library does not have any tests at this point.
src = fetchPypi {
inherit pname version;
sha256 = "1lfqsll3wv1wzn98ymmcbw0yawj8ab3mxniws6kaxf99jd4a0xp4";