about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/hiro/default.nix
blob: 3ff672a22db656ec095ee61a8fda998318f71cf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, stdenv, buildPythonPackage, fetchPypi, six, mock }:
buildPythonPackage rec {
  pname = "hiro";
  version = "0.5.1";
  src = fetchPypi {
    inherit pname version;

    sha256 = "d10e3b7f27b36673b4fa1283cd38d610326ba1ff1291260d0275152f15ae4bc7";
  };

  propagatedBuildInputs = [ six mock ];

  meta = with lib; {
    description = "Time manipulation utilities for Python";
    homepage = "https://hiro.readthedocs.io/en/latest/";
    license = licenses.mit;
    maintainers = with maintainers; [ nyarly ];
  };
}