aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/inflection/default.nix
blob: bc2a24abe59364d4f46558990812be359777853e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, fetchPypi, buildPythonPackage, pytest } :

buildPythonPackage rec {
  pname = "inflection";
  version = "0.3.1";

  src = fetchPypi {
   inherit pname version;
   sha256 = "1jhnxgnw8y3mbzjssixh6qkc7a3afc4fygajhqrqalnilyvpzshq";
  };

  checkInputs = [ pytest ];
  # Suppress overly verbose output if tests run successfully
  checkPhase = ''pytest >/dev/null || pytest'';

  meta = {
   homepage = "https://github.com/jpvanhal/inflection";
   description = "A port of Ruby on Rails inflector to Python";
   maintainers = with lib.maintainers; [ NikolaMandic ilya-kolpakov ];
   license = lib.licenses.mit;
  };
}