Merge pull request #98329 from jonringer/disable-shouldbe

python38Packages.shouldbe: disable for python3.8
This commit is contained in:
Martin Weinelt
2020-09-20 19:04:25 +02:00
committed by GitHub

View File

@@ -1,5 +1,6 @@
{ stdenv
, buildPythonPackage
, pythonAtLeast
, fetchPypi
, nose
, forbiddenfruit
@@ -8,6 +9,8 @@
buildPythonPackage rec {
version = "0.1.2";
pname = "shouldbe";
# incompatible, https://github.com/DirectXMan12/should_be/issues/4
disabled = pythonAtLeast "3.8";
src = fetchPypi {
inherit pname version;