python314Packages.apify-fingerprint-datapoints: init at 0.10.0, python314Packages.browserforge: 1.2.3 -> 1.2.4 (#486725)
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
hatchling,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "apify-fingerprint-datapoints";
|
||||
version = "0.10.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "apify_fingerprint_datapoints";
|
||||
inherit (finalAttrs) version;
|
||||
hash = "sha256-FObB0yFu/t1RtnCYyDuzIzgm4mHu8mC+cATzciGd2VA=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
pythonImportsCheck = [ "apify_fingerprint_datapoints" ];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Browser fingerprint datapoints collected by Apify";
|
||||
homepage = "https://pypi.org/project/apify-fingerprint-datapoints/";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
})
|
||||
@@ -1,34 +1,33 @@
|
||||
{
|
||||
lib,
|
||||
aiofiles,
|
||||
apify-fingerprint-datapoints,
|
||||
buildPythonPackage,
|
||||
click,
|
||||
fetchFromGitHub,
|
||||
httpx,
|
||||
orjson,
|
||||
poetry-core,
|
||||
pythonOlder,
|
||||
rich,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "browserforge";
|
||||
version = "1.2.3";
|
||||
version = "1.2.4";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "daijro";
|
||||
repo = "browserforge";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-D5GlUZ4KT6kqPQVcpli8T++xoXl1YUVGZu8rePJQ44A=";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-8mh1Wok96rwUNAdnaoI1VYkyNr50JX/K7o04n/epuMo=";
|
||||
};
|
||||
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
dependencies = [
|
||||
aiofiles
|
||||
apify-fingerprint-datapoints
|
||||
click
|
||||
httpx
|
||||
orjson
|
||||
@@ -46,4 +45,4 @@ buildPythonPackage rec {
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
@@ -816,6 +816,10 @@ self: super: with self; {
|
||||
|
||||
apiflask = callPackage ../development/python-modules/apiflask { };
|
||||
|
||||
apify-fingerprint-datapoints =
|
||||
callPackage ../development/python-modules/apify-fingerprint-datapoints
|
||||
{ };
|
||||
|
||||
apipkg = callPackage ../development/python-modules/apipkg { };
|
||||
|
||||
apischema = callPackage ../development/python-modules/apischema { };
|
||||
|
||||
Reference in New Issue
Block a user