python38Packages.shouldbe: disable for python3.8

This commit is contained in:
Jonathan Ringer 2020-09-20 09:13:34 -07:00
parent eb86bff30d
commit 43c0499f3a
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

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;