ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / hiro / default.nix
blob00b5606096419756adc0212499ac50d02ed73395
1 { lib, buildPythonPackage, fetchPypi, six, mock }:
2 buildPythonPackage rec {
3   pname = "hiro";
4   version = "0.5.1";
5   src = fetchPypi {
6     inherit pname version;
8     sha256 = "d10e3b7f27b36673b4fa1283cd38d610326ba1ff1291260d0275152f15ae4bc7";
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   };