Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / isoweek / default.nix
blob65de70b20b5e5f1324aa2eb2743feef222097d67
1 { lib, fetchPypi, buildPythonPackage }:
3 buildPythonPackage rec {
4   pname = "isoweek";
5   version = "1.3.3";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1s7zsf0pab0l9gn6456qadnz5i5h90hafcjwnhx5mq23qjxggwvk";
10   };
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   };