python312Packages.nosexcover: disable

This commit is contained in:
Martin Weinelt 2023-12-04 02:41:30 +01:00
parent 21a8a8d053
commit 120bc876be
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonAtLeast
, coverage , coverage
, nose , nose
}: }:
@ -10,6 +11,9 @@ buildPythonPackage rec {
version = "1.0.11"; version = "1.0.11";
format = "setuptools"; format = "setuptools";
# requires the imp module
disabled = pythonAtLeast "3.12";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "298c3c655da587f6cab8a666e9f4b150320032431062dea91353988d45c8b883"; sha256 = "298c3c655da587f6cab8a666e9f4b150320032431062dea91353988d45c8b883";