1{ lib, fetchPypi, buildPythonPackage }:
2
3buildPythonPackage rec {
4 pname = "isoweek";
5 version = "1.3.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1s7zsf0pab0l9gn6456qadnz5i5h90hafcjwnhx5mq23qjxggwvk";
10 };
11
12 meta = with lib; {
13 description = "The module provide the class Week. Instances represent specific weeks spanning Monday to Sunday.";
14 homepage = "https://github.com/gisle/isoweek";
15 license = licenses.bsd2;
16 maintainers = with maintainers; [ mrmebelman ];
17 };
18}
19