blob: f6cac5c2f308bb1b4a0a2f264f722be4f0acf9e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{ pkgs ? import <nixpkgs> {} }:
with pkgs.python310Packages;
let
pywikiapi = import ./deps/pywikiapi.nix { inherit pkgs; };
in
buildPythonApplication rec {
pname = "osm-proposals";
version = "git";
src = ./.;
pyproject = true;
build-system = [
hatchling
];
dependencies = [
requests
mwparserfromhell
pywikiapi
];
postInstall = ''
mkdir -p $out/share/osm-proposals
cp -r ${./static}/. $out/share/osm-proposals/
'';
nativeCheckInputs = [
pytestCheckHook
];
}
|