mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
26 lines
546 B
Nix
26 lines
546 B
Nix
{ stdenv
|
|
, 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 stdenv.lib; {
|
|
description = "Python with the SmartyPants";
|
|
homepage = "https://bitbucket.org/livibetter/smartypants.py";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
|
|
}
|