python3Packages.pytrafikverket: init at 0.1.6.2

This commit is contained in:
Fabian Affolter 2021-02-13 14:22:25 +01:00
parent 5852a21819
commit 5d1157f2d0
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
, async-timeout
, lxml
}:
buildPythonPackage rec {
pname = "pytrafikverket";
version = "0.1.6.2";
src = fetchPypi {
inherit pname version;
sha256 = "0hrjsw53ixgmhsiszdrzzh0wma705nrhq8npzacsyaf43r29zvqy";
};
propagatedBuildInputs = [
aiohttp
async-timeout
lxml
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pytrafikverket" ];
meta = with lib; {
description = "Python library to manage Etekcity Devices and Levoit Air Purifier";
homepage = "https://github.com/endor-force/pytrafikverket";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -6489,6 +6489,8 @@ in {
pytorchWithoutCuda = self.pytorch.override { cudaSupport = false; };
pytrafikverket = callPackage ../development/python-modules/pytrafikverket { };
pytrends = callPackage ../development/python-modules/pytrends { };
pytricia = callPackage ../development/python-modules/pytricia { };