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
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, pythonRelaxDepsHook
|
||||||
# Python deps
|
# Python deps
|
||||||
, blockfrost-python
|
, blockfrost-python
|
||||||
, cachetools
|
, cachetools
|
||||||
@ -41,6 +42,10 @@ in buildPythonPackage rec {
|
|||||||
hash = "sha256-LP/W8IC2del476fGFq10VMWwMrbAoCCcZOngA8unBM0=";
|
hash = "sha256-LP/W8IC2del476fGFq10VMWwMrbAoCCcZOngA8unBM0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pythonRelaxDepsHook
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
blockfrost-python
|
blockfrost-python
|
||||||
cachetools
|
cachetools
|
||||||
@ -58,6 +63,8 @@ in buildPythonPackage rec {
|
|||||||
websocket-client
|
websocket-client
|
||||||
];
|
];
|
||||||
|
|
||||||
|
pythonRelaxDeps = [ "typeguard" ];
|
||||||
|
|
||||||
pythonImportsCheck = [ "pycardano" ];
|
pythonImportsCheck = [ "pycardano" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user