83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
36 lines
837 B
Nix
36 lines
837 B
Nix
{ lib
|
|
, python
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cron_descriptor";
|
|
version = "1.2.30";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Salamek";
|
|
repo = "cron-descriptor";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-Qei9f0HlIu5sautMEASvxdUqZyXKvHDWJgd3oST1gJo=";
|
|
};
|
|
|
|
# remove tests_require, as we don't do linting anyways
|
|
postPatch = ''
|
|
sed -i "/'pep8\|flake8\|pep8-naming',/d" setup.py
|
|
'';
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} setup.py test
|
|
'';
|
|
|
|
pythonImportsCheck = [ "cron_descriptor" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library that converts cron expressions into human readable strings";
|
|
homepage = "https://github.com/Salamek/cron-descriptor";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ phaer ];
|
|
};
|
|
}
|