depot/third_party/nixpkgs/pkgs/development/python-modules/functools32/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

22 lines
491 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:
if isPy3k then null else buildPythonPackage rec {
pname = "functools32";
version = "3.2.3-2";
src = fetchPypi {
inherit pname version;
sha256 = "0v8ya0b58x47wp216n1zamimv4iw57cxz3xxhzix52jkw3xks9gn";
};
meta = with stdenv.lib; {
description = "This is a backport of the functools standard library module from";
homepage = "https://github.com/MiCHiLU/python-functools32";
license = licenses.psfl;
};
}