python3Packages.airly: 1.0.0 -> 1.1.0
This commit is contained in:
parent
10cb065706
commit
f654723cae
@ -1,29 +1,40 @@
|
|||||||
{ lib
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, aioresponses
|
||||||
|
, aiounittest
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, aiohttp
|
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "airly";
|
pname = "airly";
|
||||||
version = "1.0.0";
|
version = "1.1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ak-ambi";
|
owner = "ak-ambi";
|
||||||
repo = "python-airly";
|
repo = "python-airly";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0an6nbl0i5pahxm6x4z03s9apzgqrw9zf7srjcs0r3y1ppicb4s6";
|
sha256 = "sha256-weliT/FYnRX+pzVAyRWFly7lfj2z7P+hpq5SIhyIgmI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ aiohttp ];
|
propagatedBuildInputs = [ aiohttp ];
|
||||||
|
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [
|
||||||
|
aioresponses
|
||||||
|
aiounittest
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
cd tests
|
||||||
|
'';
|
||||||
|
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
"InstallationsLoaderTestCase"
|
"InstallationsLoaderTestCase"
|
||||||
"MeasurementsSessionTestCase"
|
"MeasurementsSessionTestCase"
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "airly" ];
|
pythonImportsCheck = [ "airly" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user