diff options
author | Martin Fischer <martin@push-f.com> | 2025-03-22 21:55:38 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-03-26 08:23:57 +0100 |
commit | fff83bca1b5069f49af4d2e1dc1e1b1da60d7a61 (patch) | |
tree | 120fa07a42c5ac7e02fdd2d5245a7bbf00525e7d /default.nix | |
parent | 1c5b72f01ae4cac9740b43af6963e08c6277275c (diff) |
build: use npins
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/default.nix b/default.nix index f6cac5c..897ac2e 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,16 @@ with pkgs.python310Packages; let - pywikiapi = import ./deps/pywikiapi.nix { inherit pkgs; }; + sources = import ./npins; + pywikiapi = buildPythonPackage rec { + pname = "pywikiapi"; + version = "pinned"; + src = sources.pywikiapi; + + dependencies = [ + requests + ]; + }; in buildPythonApplication rec { pname = "osm-proposals"; |