anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / hiro / default.nix
blob7b7f7d8dbf054362d0b8bb36d387e968cec0d6e0
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   six,
6   mock,
7 }:
8 buildPythonPackage rec {
9   pname = "hiro";
10   version = "1.1.1";
11   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
15     hash = "sha256-2jM5rx3JpZTMqdycccclJysuMGYE5F0OBXXNE8X5XWg=";
16   };
18   propagatedBuildInputs = [
19     six
20     mock
21   ];
23   meta = with lib; {
24     description = "Time manipulation utilities for Python";
25     homepage = "https://hiro.readthedocs.io/en/latest/";
26     license = licenses.mit;
27     maintainers = with maintainers; [ nyarly ];
28   };