2019-01-29 13:42:44 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "future-fstrings";
|
2019-04-02 13:50:40 +01:00
|
|
|
version = "1.0.0";
|
2019-01-29 13:42:44 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version;
|
|
|
|
pname = "future_fstrings";
|
2019-04-02 13:50:40 +01:00
|
|
|
sha256 = "1pra33in6rinrcs5wvdb1rbxmx223j93ahdwhzwgf7wyfsnjda98";
|
2019-01-29 13:42:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# No tests included in Pypi archive
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/asottile/future-fstrings";
|
2019-01-29 13:42:44 +00:00
|
|
|
description = "A backport of fstrings to python<3.6";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ nyanloutre ];
|
2019-02-07 15:28:57 +00:00
|
|
|
broken = pythonOlder "3.6"; # dependency tokenize-rt not packaged
|
2019-01-29 13:42:44 +00:00
|
|
|
};
|
|
|
|
}
|