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

    sha256 = "57d9dac63077f24c3d0132c02ac5c71e4bd1d79bdac30dccad4c83fadd49fa1c";
  };

  propagatedBuildInputs = [ six mock ];

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