depot/third_party/nixpkgs/pkgs/development/python-modules/isoweek/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

19 lines
510 B
Nix

{ lib, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "isoweek";
version = "1.3.3";
src = fetchPypi {
inherit pname version;
sha256 = "1s7zsf0pab0l9gn6456qadnz5i5h90hafcjwnhx5mq23qjxggwvk";
};
meta = with lib; {
description = "The module provide the class Week. Instances represent specific weeks spanning Monday to Sunday.";
homepage = "https://github.com/gisle/isoweek";
license = licenses.bsd2;
maintainers = with maintainers; [ mrmebelman ];
};
}