1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 six,
6 mock,
7}:
8buildPythonPackage rec {
9 pname = "hiro";
10 version = "1.1.1";
11 format = "setuptools";
12 src = fetchPypi {
13 inherit pname version;
14
15 hash = "sha256-2jM5rx3JpZTMqdycccclJysuMGYE5F0OBXXNE8X5XWg=";
16 };
17
18 propagatedBuildInputs = [
19 six
20 mock
21 ];
22
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 };
29}