aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/humanize/default.nix
blob: d54c932ae32cd6ff65362eb5b2aa1a6c9415dd4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, buildPythonPackage
, fetchPypi
, mock
}:

buildPythonPackage rec {
  version = "0.5.1";
  pname = "humanize";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a43f57115831ac7c70de098e6ac46ac13be00d69abbf60bdcac251344785bb19";
  };

  buildInputs = [ mock ];

  doCheck = false;

  meta = with stdenv.lib; {
    description = "Python humanize utilities";
    homepage = "https://github.com/jmoiron/humanize";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
    platforms = platforms.unix;
  };

}