pythonPackages.pyaftership: init at 0.1.2

This commit is contained in:
Jamie Magee 2020-10-18 22:53:36 +02:00
parent 5e67d80a8b
commit d804c4393f
No known key found for this signature in database
GPG key ID: 4429B642B1718654
2 changed files with 28 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };