1{ stdenv
2, buildPythonPackage
3, fetchhg
4, isPyPy
5}:
6
7buildPythonPackage rec {
8 version = "1.8.6";
9 pname = "smartypants";
10 disabled = isPyPy;
11
12 src = fetchhg {
13 url = "https://bitbucket.org/livibetter/smartypants.py";
14 rev = "v${version}";
15 sha256 = "1cmzz44d2hm6y8jj2xcq1wfr26760gi7iq92ha8xbhb1axzd7nq6";
16 };
17
18 meta = with stdenv.lib; {
19 description = "Python with the SmartyPants";
20 homepage = "https://bitbucket.org/livibetter/smartypants.py";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ garbas ];
23 };
24
25}