2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2018-10-29 17:50:47 +00:00
|
|
|
, 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";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-29 17:50:47 +00:00
|
|
|
description = "Python with the SmartyPants";
|
|
|
|
homepage = "https://bitbucket.org/livibetter/smartypants.py";
|
|
|
|
license = licenses.bsd3;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-10-29 17:50:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|