mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 02:05:02 +00:00
Merge master into staging-next
This commit is contained in:
@@ -8,22 +8,19 @@
|
||||
, nose
|
||||
, pyopenssl
|
||||
, pytestCheckHook
|
||||
, pythonAtLeast
|
||||
, pytz
|
||||
, tzlocal
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioimaplib";
|
||||
version = "0.8.0";
|
||||
|
||||
disabled = pythonAtLeast "3.9";
|
||||
version = "0.9.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bamthomas";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-ume25EwLNB6szokHXonDXHGKVK76CiZYOBXVUf37/x8=";
|
||||
sha256 = "sha256-xxZAeJDuqrPv4kGgDr0ypFuZJk1zcs/bmgeEzI0jpqY=";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
|
||||
@@ -9,18 +9,29 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "PyMetno";
|
||||
version = "0.8.1";
|
||||
version = "0.8.2";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = pname;
|
||||
owner = "Danielhiversen";
|
||||
rev = version;
|
||||
sha256 = "1jngf0mbn5hn166pqh1ga5snwwvv7n5kv1k9kaksrfibixkvpw6h";
|
||||
sha256 = "0b1zm60yqj1mivc3zqw2qm9rqh8cbmx0r58jyyvm3pxzq5cafdg5";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ aiohttp async-timeout pytz xmltodict ];
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
async-timeout
|
||||
pytz
|
||||
xmltodict
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "metno"];
|
||||
pythonImportsCheck = [
|
||||
"metno"
|
||||
];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A library to communicate with the met.no api";
|
||||
|
||||
@@ -8,14 +8,14 @@
|
||||
|
||||
buildPythonPackage {
|
||||
pname = "slob";
|
||||
version = "unstable-2016-11-03";
|
||||
version = "unstable-2020-06-26";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "itkach";
|
||||
repo = "slob";
|
||||
rev = "d1ed71e4778729ecdfc2fe27ed783689a220a6cd";
|
||||
sha256 = "1r510s4r124s121wwdm9qgap6zivlqqxrhxljz8nx0kv0cdyypi5";
|
||||
rev = "018588b59999c5c0eb42d6517fdb84036f3880cb";
|
||||
sha256 = "01195hphjnlcvgykw143rf06s6y955sjc1r825a58vhjx7hj54zh";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ PyICU ];
|
||||
@@ -24,10 +24,11 @@ buildPythonPackage {
|
||||
${python.interpreter} -m unittest slob
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "slob" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/itkach/slob/";
|
||||
description = "Reference implementation of the slob (sorted list of blobs) format";
|
||||
license = licenses.gpl3;
|
||||
license = licenses.gpl3Only;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user