2018-05-13 22:19:35 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, six, mock }:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hiro";
|
2018-05-28 13:18:09 +01:00
|
|
|
version = "0.1.9";
|
2018-05-13 22:19:35 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
|
2018-05-28 13:18:09 +01:00
|
|
|
sha256 = "3b19abd8873880ad59575788279731c07838e803c4f31d62410920fa6b1f95d5";
|
2018-05-13 22:19:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|