mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
Merge pull request #101033 from JamieMagee/pyaftership
pythonPackages.pyaftership: init at 0.1.2
This commit is contained in:
commit
4dca83eb54
26
pkgs/development/python-modules/pyaftership/default.nix
Normal file
26
pkgs/development/python-modules/pyaftership/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ aiohttp, async-timeout, buildPythonPackage, fetchPypi, isPy3k, lib }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyaftership";
|
||||
version = "0.1.2";
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "057dwzacc0lmsq00ipfbnxkq4rc2by8glmza6s8i6dzi1cc68v98";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ aiohttp async-timeout ];
|
||||
|
||||
# No tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "pyaftership.tracker" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python wrapper package for the AfterShip API";
|
||||
homepage = "https://github.com/ludeeus/pyaftership";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jamiemagee ];
|
||||
};
|
||||
}
|
@ -11,7 +11,7 @@
|
||||
"actiontec" = ps: with ps; [ ];
|
||||
"adguard" = ps: with ps; [ adguardhome ];
|
||||
"ads" = ps: with ps; [ pyads ];
|
||||
"aftership" = ps: with ps; [ ]; # missing inputs: pyaftership
|
||||
"aftership" = ps: with ps; [ pyaftership ];
|
||||
"agent_dvr" = ps: with ps; [ ]; # missing inputs: agent-py
|
||||
"air_quality" = ps: with ps; [ ];
|
||||
"airly" = ps: with ps; [ ]; # missing inputs: airly
|
||||
|
@ -4760,6 +4760,8 @@ in {
|
||||
|
||||
pyaes = callPackage ../development/python-modules/pyaes { };
|
||||
|
||||
pyaftership = callPackage ../development/python-modules/pyaftership { };
|
||||
|
||||
pyairvisual = callPackage ../development/python-modules/pyairvisual { };
|
||||
|
||||
pyalgotrade = callPackage ../development/python-modules/pyalgotrade { };
|
||||
|
Loading…
Reference in New Issue
Block a user