Merge pull request #126781 from dotlambda/buienradar-init

python3Packages.buienradar: init at 1.0.4
This commit is contained in:
Fabian Affolter
2021-06-14 11:06:05 +02:00
committed by GitHub
5 changed files with 92 additions and 1 deletions

View File

@@ -0,0 +1,58 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, docopt
, pytz
, requests
, setuptools
, vincenty
, xmltodict
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "buienradar";
version = "1.0.4";
disabled = pythonOlder "3.4";
src = fetchFromGitHub {
owner = "mjj4791";
repo = "python-buienradar";
rev = version;
sha256 = "1s0m5x7wdvzzsm797lh6531k614ybh7z0cikxjxqw377mivpz4wq";
};
propagatedBuildInputs = [
docopt
pytz
requests
setuptools
vincenty
xmltodict
];
checkInputs = [
pytestCheckHook
];
disabledTests = [
# require network connection
"test_rain_data"
"test_json_data"
"test_xml_data"
];
pythonImportsCheck = [
"buienradar.buienradar"
"buienradar.constants"
];
meta = with lib; {
description = "Library and CLI tools for interacting with buienradar";
homepage = "https://github.com/mjj4791/python-buienradar";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View File

@@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "vincenty";
version = "0.1.4";
src = fetchFromGitHub {
owner = "maurycyp";
repo = "vincenty";
rev = version;
sha256 = "1li8gv0zb1pdbxdybgaykm38lqbkb5dr7rph6zs1k4k3sh15ldw3";
};
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "vincenty" ];
meta = with lib; {
description = "Calculate the geographical distance between 2 points with extreme accuracy";
homepage = "https://github.com/maurycyp/vincenty";
license = licenses.unlicense;
maintainers = with maintainers; [ dotlambda ];
};
}