about summary refs log tree commit diff
path: root/pkgs/development/python-modules/inflect/default.nix
blob: 9d3511e41d1b6add28c26682a1f87c0660e8814c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ buildPythonPackage, fetchPypi, setuptools_scm, nose, six }:

buildPythonPackage rec {
  pname = "inflect";
  version = "1.0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "98cf5d82952ed8bf1cf9236c6058e9a21bc66172ecb907969d907741f91388b5";
  };

  buildInputs = [ setuptools_scm ];
  checkInputs = [ nose ];
  propagatedBuildInputs = [ six ];
}