blob: 93ff9c33f5d7b6bd6e61d2b47ffcfd6f63ff8c78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
fetchPypi,
buildPythonPackage,
setuptools,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "isoweek";
version = "1.3.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-c/P3usRD4Fo6tFwypyBIsMTybVPYFGLsSxQsdYHT/+g=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "isoweek" ];
meta = {
description = "Module work with ISO weeks";
homepage = "https://github.com/gisle/isoweek";
changelog = "https://github.com/gisle/isoweek/releases/tag/v${version}";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ mrmebelman ];
};
}
|