Personal-use NixOS configuration
1{
2 lib,
3 python3,
4 pythonOlder ? python3.pkgs.pythonOlder,
5 fetchPypi,
6}:
7
8python3.pkgs.buildPythonPackage rec {
9 pname = "apify-fingerprint-datapoints";
10 version = "0.11.0";
11 pyproject = true;
12
13 disabled = pythonOlder "3.8";
14
15 src = fetchPypi {
16 pname = "apify_fingerprint_datapoints";
17 inherit version;
18 hash = "sha256-P5BcOSsRon+1nM/kCJHBZqvXN6ucYglzPxAruzswJRU=";
19 };
20
21 build-system = with python3.pkgs; [ hatchling ];
22
23 meta = {
24 description = "Browser fingerprinting tools for anonymizing your scrapers";
25 homepage = "https://github.com/apify/fingerprint-suite";
26 license = lib.licenses.asl20;
27 maintainers = with lib.maintainers; [ encode42 ];
28 };
29}