Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / isoweek / default.nix
blobe16d27c47bcffe03ff42028a38d38e8e0490af72
1 { lib, fetchPypi, buildPythonPackage }:
3 buildPythonPackage rec {
4   pname = "isoweek";
5   version = "1.3.3";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "1s7zsf0pab0l9gn6456qadnz5i5h90hafcjwnhx5mq23qjxggwvk";
11   };
13   meta = with lib; {
14     description = "The module provide the class Week. Instances represent specific weeks spanning Monday to Sunday.";
15     homepage = "https://github.com/gisle/isoweek";
16     license = licenses.bsd2;
17     maintainers = with maintainers; [ mrmebelman ];
18   };