Merge pull request #113008 from fabaff/auroranoaa
This commit is contained in:
commit
224e1b9655
3 changed files with 35 additions and 1 deletions
32
pkgs/development/python-modules/auroranoaa/default.nix
Normal file
32
pkgs/development/python-modules/auroranoaa/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "auroranoaa";
|
||||||
|
version = "0.0.2";
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "djtimca";
|
||||||
|
repo = "aurora-api";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0bh8amixkg3xigwh3ryra22x6kzhbdassmf1iqv20lhbvzmsqjv0";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ aiohttp ];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "auroranoaa" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python wrapper for the Aurora API";
|
||||||
|
homepage = "https://github.com/djtimca/aurora-api";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -57,7 +57,7 @@
|
||||||
"aten_pe" = ps: with ps; [ atenpdu ];
|
"aten_pe" = ps: with ps; [ atenpdu ];
|
||||||
"atome" = ps: with ps; [ ]; # missing inputs: pyatome
|
"atome" = ps: with ps; [ ]; # missing inputs: pyatome
|
||||||
"august" = ps: with ps; [ ]; # missing inputs: py-august
|
"august" = ps: with ps; [ ]; # missing inputs: py-august
|
||||||
"aurora" = ps: with ps; [ ]; # missing inputs: auroranoaa
|
"aurora" = ps: with ps; [ auroranoaa ];
|
||||||
"aurora_abb_powerone" = ps: with ps; [ ]; # missing inputs: aurorapy
|
"aurora_abb_powerone" = ps: with ps; [ ]; # missing inputs: aurorapy
|
||||||
"auth" = ps: with ps; [ aiohttp-cors ];
|
"auth" = ps: with ps; [ aiohttp-cors ];
|
||||||
"automation" = ps: with ps; [ aiohttp-cors ];
|
"automation" = ps: with ps; [ aiohttp-cors ];
|
||||||
|
|
|
@ -546,6 +546,8 @@ in {
|
||||||
|
|
||||||
augeas = callPackage ../development/python-modules/augeas { inherit (pkgs) augeas; };
|
augeas = callPackage ../development/python-modules/augeas { inherit (pkgs) augeas; };
|
||||||
|
|
||||||
|
auroranoaa = callPackage ../development/python-modules/auroranoaa { };
|
||||||
|
|
||||||
auth0-python = callPackage ../development/python-modules/auth0-python { };
|
auth0-python = callPackage ../development/python-modules/auth0-python { };
|
||||||
|
|
||||||
authheaders = callPackage ../development/python-modules/authheaders { };
|
authheaders = callPackage ../development/python-modules/authheaders { };
|
||||||
|
|
Loading…
Reference in a new issue