pythonPackages.WSME: Disable on python 3.9

This commit is contained in:
Sandro Jäckel 2021-01-03 09:20:04 +01:00
parent b76763dd8b
commit 15ec468e9e
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonAtLeast
, pbr , pbr
, six , six
, simplegeneric , simplegeneric
@ -23,6 +24,8 @@ buildPythonPackage rec {
pname = "WSME"; pname = "WSME";
version = "0.10.0"; version = "0.10.0";
disabled = pythonAtLeast "3.9";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "965b9ce48161e5c50d84aedcf50dca698f05bf07e9d489201bccaec3141cd304"; sha256 = "965b9ce48161e5c50d84aedcf50dca698f05bf07e9d489201bccaec3141cd304";