summary refs log tree commit diff
path: root/pkgs/development/python-modules/smartypants/default.nix
blob: d1e11e30d61951643468ace6ed6ee1c13b51a068 (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
25
{ lib
, buildPythonPackage
, fetchhg
, isPyPy
}:

buildPythonPackage rec {
  version = "1.8.6";
  pname = "smartypants";
  disabled = isPyPy;

  src = fetchhg {
    url = "https://bitbucket.org/livibetter/smartypants.py";
    rev = "v${version}";
    sha256 = "1cmzz44d2hm6y8jj2xcq1wfr26760gi7iq92ha8xbhb1axzd7nq6";
  };

  meta = with lib; {
    description = "Python with the SmartyPants";
    homepage = "https://bitbucket.org/livibetter/smartypants.py";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
  };

}