diff --git a/nix/sources.json b/nix/sources.json
index 64e60f456012679b9edb1ce6793a04847282d38f..091e2b17c281645f2f7e495edec2eb146365f344 100644
--- a/nix/sources.json
+++ b/nix/sources.json
@@ -1,18 +1,4 @@
{
"branch": "master",
"builtin": false,
"date": "2020-11-03T14:35:02Z",
"description": "Python library and cmd tool to backup API calls",
"homepage": "https://github.com/ruarxive/apibackuper",
"owner": "ruarxive",
"repo": "apibackuper",
"rev": "1ff139f688d59b899ff041ccc282e224110ddc76",
"sha256": "01lwd958byqh3ly9f1n4rk8sq3mdjgydsw2il4mvblsmcid7pg84",
"type": "tarball",
"url": "https://github.com/ruarxive/apibackuper/archive/1ff139f688d59b899ff041ccc282e224110ddc76.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
"docker-reg-tool": {
"branch": "master",
"builtin": false,
@@ -203,20 +189,6 @@ "rev": "abc39706151159d102d29e3e2f2b8d5688362ec3",
"sha256": "10xx1vyw2dd2qgwaswz7nk0c1h60vy39a3fn7dkvr716i37pccih",
"type": "tarball",
"url": "https://github.com/viva64/how-to-use-pvs-studio-free/archive/abc39706151159d102d29e3e2f2b8d5688362ec3.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
"branch": "master",
"builtin": false,
"date": "2019-07-31T19:44:30Z",
"description": "Python implementation of RFC 7464",
"homepage": "https://github.com/sgillies/jsonseq",
"owner": "sgillies",
"repo": "jsonseq",
"rev": "d9a9c86c6c05abca1ed2bdbff248eb3cd9f214fd",
"sha256": "0a2ivyc4dbfxnwc8phzgxxnmg57n5iwk4sjcnarhib25qkwbi6v9",
"type": "tarball",
"url": "https://github.com/sgillies/jsonseq/archive/d9a9c86c6c05abca1ed2bdbff248eb3cd9f214fd.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"klogg": {
@@ -452,20 +424,6 @@ "rev": "23b74acadf89ad917c15dd8fb9c8f59aa6cc8640",
"sha256": "0a8bz0cfywhxg8v6a6n2n91r77sxvni0lxlv6sz4cfhjsasbibpw",
"type": "tarball",
"url": "https://github.com/mapbox/tilesets-cli/archive/23b74acadf89ad917c15dd8fb9c8f59aa6cc8640.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
"branch": "main",
"builtin": false,
"date": "2021-02-10T19:44:55Z",
"description": "ArcGIS Tile Package Utilities",
"homepage": "https://github.com/consbio/tpkutils",
"owner": "consbio",
"repo": "tpkutils",
"rev": "5f3694451a1759548af579b689f478cefc633252",
"sha256": "0rr5ynzzy0a9y2d55bhq271vsjdi5nqq70329zinwgs1d9207qg9",
"type": "tarball",
"url": "https://github.com/consbio/tpkutils/archive/5f3694451a1759548af579b689f478cefc633252.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
}
}
diff --git a/pkgs/development/python-modules/jsonseq/default.nix b/pkgs/development/python-modules/jsonseq/default.nix
index e3526a7d34d9c41c32a4e35dcccd7c7a3b05b9ff..cb403d9cfa06ffe8d81c90c7289997d9b8f91653 100644
--- a/pkgs/development/python-modules/jsonseq/default.nix
+++ b/pkgs/development/python-modules/jsonseq/default.nix
@@ -1,15 +1,21 @@
-{ lib, python3Packages, sources }:
+{ lib, fetchFromGitHub, python3Packages }:
-python3Packages.buildPythonPackage {
+python3Packages.buildPythonPackage rec {
checkInputs = with python3Packages; [ pytestCheckHook ];
meta = with lib; {
license = licenses.mit;
maintainers = [ maintainers.sikmir ];
};
diff --git a/pkgs/misc/apibackuper/default.nix b/pkgs/misc/apibackuper/default.nix
index 0285e3d0f694121c690815d1af6935f9da72bb9a..f7bd38f505faee3659e506f991a630beac7deb39 100644
--- a/pkgs/misc/apibackuper/default.nix
+++ b/pkgs/misc/apibackuper/default.nix
@@ -1,17 +1,23 @@
-{ lib, python3Packages, bson, sources }:
+{ lib, fetchFromGitHub, python3Packages, bson }:
-python3Packages.buildPythonApplication {
+python3Packages.buildPythonApplication rec {
propagatedBuildInputs = with python3Packages; [ bson click lxml requests xmltodict ];
doCheck = false;
meta = with lib; {
license = licenses.mit;
maintainers = [ maintainers.sikmir ];
platforms = platforms.unix;
diff --git a/pkgs/misc/reproxy/default.nix b/pkgs/misc/reproxy/default.nix
index fe5b1a038cced90c72e9675dcbba9a41a0cb3383..f3f873f2b3cc5037d7732a7b8d208d41498cf948 100644
--- a/pkgs/misc/reproxy/default.nix
+++ b/pkgs/misc/reproxy/default.nix
@@ -2,13 +2,13 @@ { lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "reproxy";
src = fetchFromGitHub {
owner = "umputun";
repo = pname;
rev = "v${version}";
};
vendorSha256 = null;
diff --git a/pkgs/tools/geo/tpkutils/default.nix b/pkgs/tools/geo/tpkutils/default.nix
index 38205822fd59048328a7b9f1006a7f8d260d448b..24926f948b4003b53d2eb9795578a6e85edc7df6 100644
--- a/pkgs/tools/geo/tpkutils/default.nix
+++ b/pkgs/tools/geo/tpkutils/default.nix
@@ -1,17 +1,23 @@
-{ lib, python3Packages, mercantile, pymbtiles, sources }:
+{ lib, fetchFromGitHub, python3Packages, mercantile, pymbtiles }:
-python3Packages.buildPythonApplication {
+python3Packages.buildPythonApplication rec {
propagatedBuildInputs = with python3Packages; [ mercantile pymbtiles setuptools six ];
checkInputs = with python3Packages; [ pytestCheckHook ];
meta = with lib; {
license = licenses.isc;
maintainers = [ maintainers.sikmir ];
platforms = platforms.unix;
application/octet-stream
This content has been proxied by September (3851b).