python3Packages.pytrafikverket: init at 0.1.6.2
This commit is contained in:
parent
5852a21819
commit
5d1157f2d0
34
pkgs/development/python-modules/pytrafikverket/default.nix
Normal file
34
pkgs/development/python-modules/pytrafikverket/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -6489,6 +6489,8 @@ in {
|
|||||||
|
|
||||||
pytorchWithoutCuda = self.pytorch.override { cudaSupport = false; };
|
pytorchWithoutCuda = self.pytorch.override { cudaSupport = false; };
|
||||||
|
|
||||||
|
pytrafikverket = callPackage ../development/python-modules/pytrafikverket { };
|
||||||
|
|
||||||
pytrends = callPackage ../development/python-modules/pytrends { };
|
pytrends = callPackage ../development/python-modules/pytrends { };
|
||||||
|
|
||||||
pytricia = callPackage ../development/python-modules/pytricia { };
|
pytricia = callPackage ../development/python-modules/pytricia { };
|
||||||
|
Loading…
Reference in New Issue
Block a user