Skip to content

Commit

Permalink
python310Packages.pyorthanc: relax httpx dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
tjni committed Jun 16, 2023
1 parent e627281 commit 57dd497
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkgs/development/python-modules/pyorthanc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, pythonRelaxDepsHook
, poetry-core
, httpx
, pydicom
Expand All @@ -22,10 +23,14 @@ buildPythonPackage rec {
hash = "sha256-RZJ7BuQRJ+yaHFv9iq4uFvMtH8NvGvmpjmgmyvw9rGk=";
};

nativeBuildInputs = [ poetry-core ];
nativeBuildInputs = [ pythonRelaxDepsHook poetry-core ];

propagatedBuildInputs = [ httpx pydicom ];

pythonRelaxDeps = [
"httpx"
];

doCheck = false; # requires orthanc server (not in Nixpkgs)

pythonImportsCheck = [
Expand Down

0 comments on commit 57dd497

Please sign in to comment.