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

20 lines
519 B
Nix
Raw Normal View History

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