mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 02:14:08 +00:00
python3Packages.pycardano: relax bound on typeguard
This commit is contained in:
parent
502ba8d4f5
commit
9f359348e1
@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonRelaxDepsHook
|
||||
# Python deps
|
||||
, blockfrost-python
|
||||
, cachetools
|
||||
@ -41,6 +42,10 @@ in buildPythonPackage rec {
|
||||
hash = "sha256-LP/W8IC2del476fGFq10VMWwMrbAoCCcZOngA8unBM0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
blockfrost-python
|
||||
cachetools
|
||||
@ -58,6 +63,8 @@ in buildPythonPackage rec {
|
||||
websocket-client
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [ "typeguard" ];
|
||||
|
||||
pythonImportsCheck = [ "pycardano" ];
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user