python310Packages.cryptg: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-11-02 08:17:17 +01:00 committed by GitHub
parent 5872c13565
commit b0664a021e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, rustPlatform
, setuptools-rust
}:
@ -10,6 +11,8 @@ buildPythonPackage rec {
version = "0.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "cher-nov";
repo = pname;