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

20 lines
522 B
Nix
Raw Normal View History

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