linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pyaftership / default.nix
blob4deee467f84e4a1b4eaf77d6f5f522d9c6fe68bc
1 { aiohttp, async-timeout, buildPythonPackage, fetchPypi, isPy3k, lib }:
3 buildPythonPackage rec {
4   pname = "pyaftership";
5   version = "0.1.2";
7   disabled = !isPy3k;
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "057dwzacc0lmsq00ipfbnxkq4rc2by8glmza6s8i6dzi1cc68v98";
12   };
14   propagatedBuildInputs = [ aiohttp async-timeout ];
16   # No tests
17   doCheck = false;
18   pythonImportsCheck = [ "pyaftership.tracker" ];
20   meta = with lib; {
21     description = "Python wrapper package for the AfterShip API";
22     homepage = "https://github.com/ludeeus/pyaftership";
23     license = licenses.mit;
24     maintainers = with maintainers; [ jamiemagee ];
25   };