Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / aiocron / default.nix
blob2b3f6e595d3659d83ee80b10dc88742a66ce9728
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , python
5 , croniter
6 , tzlocal
7 , pytestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "aiocron";
12   version = "1.8";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-SFRlE/ry63kB5lpk66e2U8gBBu0A7ZyjQZw9ELZVWgE=";
17   };
19   propagatedBuildInputs = [
20     croniter
21     tzlocal
22   ];
24   nativeCheckInputs = [
25     pytestCheckHook
26     tzlocal
27   ];
29   postPatch = ''
30     sed -i "/--cov/d" setup.cfg
31     sed -i "/--ignore/d" setup.cfg
32   '';
34   postInstall = ''
35     rm -rf $out/${python.sitePackages}/tests
36   '';
38   pythonImportsCheck = [ "aiocron" ];
40   meta = with lib; {
41     description = "Crontabs for asyncio";
42     homepage = "https://github.com/gawel/aiocron/";
43     license = licenses.mit;
44     maintainers = [ maintainers.starcraft66 ];
45   };