nixpkgs/pkgs/development/python-modules/hiro/default.nix

20 lines
517 B
Nix
Raw Normal View History

2018-05-13 23:19:35 +02:00
{ stdenv, buildPythonPackage, fetchPypi, six, mock }:
buildPythonPackage rec {
pname = "hiro";
2018-06-12 18:47:01 +02:00
version = "0.5";
2018-05-13 23:19:35 +02:00
src = fetchPypi {
inherit pname version;
2018-06-12 18:47:01 +02:00
sha256 = "57d9dac63077f24c3d0132c02ac5c71e4bd1d79bdac30dccad4c83fadd49fa1c";
2018-05-13 23:19:35 +02: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 ];
};
}