about summary refs log tree commit diff
path: root/pkgs/development/python-modules/escapism/default.nix
blob: b2ac365823577e18f99f33fce913c6f54d6e06ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ pkgs
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "escapism";
  version = "1.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5f1cc1fa04a95f5b85b3da194750f8a71846d493ea332f62e8798949f10c9b86";
  };

  # No tests distributed
  doCheck = false;

  meta = with pkgs.lib; {
    description = "Simple, generic API for escaping strings";
    homepage = "https://github.com/minrk/escapism";
    license = licenses.mit;
    maintainers = with maintainers; [ bzizou ];
  };
}