Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / hiro / default.nix
blob9eefc61dbfb991d78546d0c4b8c182943818486f
1 { lib, buildPythonPackage, fetchPypi, six, mock }:
2 buildPythonPackage rec {
3   pname = "hiro";
4   version = "1.1.1";
5   src = fetchPypi {
6     inherit pname version;
8     hash = "sha256-2jM5rx3JpZTMqdycccclJysuMGYE5F0OBXXNE8X5XWg=";
9   };
11   propagatedBuildInputs = [ six mock ];
13   meta = with lib; {
14     description = "Time manipulation utilities for Python";
15     homepage = "https://hiro.readthedocs.io/en/latest/";
16     license = licenses.mit;
17     maintainers = with maintainers; [ nyarly ];
18   };