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

20 lines
520 B
Nix
Raw Normal View History

2018-05-13 23:19:35 +02:00
{ stdenv, buildPythonPackage, fetchPypi, six, mock }:
buildPythonPackage rec {
pname = "hiro";
2019-10-16 11:43:07 +02:00
version = "0.5.1";
2018-05-13 23:19:35 +02:00
src = fetchPypi {
inherit pname version;
2019-10-16 11:43:07 +02:00
sha256 = "d10e3b7f27b36673b4fa1283cd38d610326ba1ff1291260d0275152f15ae4bc7";
2018-05-13 23:19:35 +02:00
};
propagatedBuildInputs = [ six mock ];
meta = with stdenv.lib; {
description = "Time manipulation utilities for Python";
2019-07-10 21:52:51 +02:00
homepage = https://hiro.readthedocs.io/en/latest/;
2018-05-13 23:19:35 +02:00
license = licenses.mit;
maintainers = with maintainers; [ nyarly ];
};
}