nixpkgs/pkgs/development/python-modules/future-fstrings/default.nix
R. RyanTM 403bcb3b3e python37Packages.future-fstrings: 0.4.5 -> 1.0.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-future-fstrings/versions

(cherry picked from commit 89f8c3ba88694a7a71369a9ce152f01dd0e3b306)
2019-04-07 13:53:41 +02:00

24 lines
631 B
Nix

{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
buildPythonPackage rec {
pname = "future-fstrings";
version = "1.0.0";
src = fetchPypi {
inherit version;
pname = "future_fstrings";
sha256 = "1pra33in6rinrcs5wvdb1rbxmx223j93ahdwhzwgf7wyfsnjda98";
};
# No tests included in Pypi archive
doCheck = false;
meta = with lib; {
homepage = https://github.com/asottile/future-fstrings;
description = "A backport of fstrings to python<3.6";
license = licenses.mit;
maintainers = with maintainers; [ nyanloutre ];
broken = pythonOlder "3.6"; # dependency tokenize-rt not packaged
};
}