mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
pythonPackages.fastcache: init at 1.0.2 (#45048)
This commit is contained in:
parent
cc8e4a5884
commit
16d4753344
20
pkgs/development/python-modules/fastcache/default.nix
Normal file
20
pkgs/development/python-modules/fastcache/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "fastcache";
|
||||
version = "1.0.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1rl489zfbm2x67n7i6r7r4nhrhwk6yz3yc7x9y2rky8p95vhaw46";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "C implementation of Python3 lru_cache for Python 2 and 3";
|
||||
homepage = https://github.com/pbrady/fastcache;
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.bhipple ];
|
||||
};
|
||||
}
|
@ -2537,6 +2537,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
fastcache = callPackage ../development/python-modules/fastcache { };
|
||||
|
||||
functools32 = if isPy3k then null else buildPythonPackage rec {
|
||||
name = "functools32-${version}";
|
||||
version = "3.2.3-2";
|
||||
|
Loading…
Reference in New Issue
Block a user