diff options
author | Martin Fischer <martin@push-f.com> | 2025-03-09 13:48:00 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-03-09 21:36:04 +0100 |
commit | 232f1499bb9a2cc85a63abcc1c22776ef77781fb (patch) | |
tree | 50b9b429140e6d597090e5d1264496555fd0edf7 /deps | |
parent | 42c737aa1a7731170e8369482f96b557a1bd7a36 (diff) |
Diffstat (limited to 'deps')
-rw-r--r-- | deps/pywikiapi.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/deps/pywikiapi.nix b/deps/pywikiapi.nix new file mode 100644 index 0000000..856f0f0 --- /dev/null +++ b/deps/pywikiapi.nix @@ -0,0 +1,16 @@ +{ pkgs }: +with pkgs.python310Packages; + +buildPythonPackage rec { + pname = "pywikiapi"; + version = "4.3.0"; + src = pkgs.fetchPypi { + inherit pname; + inherit version; + hash = "sha256-gynkx98y8Vx/N3i6xoQ7x9MgTW6qACoYcDwy71FDYIE="; + }; + + dependencies = [ + requests + ]; +} |