Merge pull request #101033 from JamieMagee/pyaftership

pythonPackages.pyaftership: init at 0.1.2
This commit is contained in:
Martin Weinelt
2020-10-19 20:59:26 +02:00
committed by GitHub
3 changed files with 29 additions and 1 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 ];
};
}