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
commit 1696de584b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;