mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
0215034f25
when they already rely on SRI hashes.
25 lines
449 B
Nix
25 lines
449 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "funcy";
|
|
version = "1.18";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-FUSNGajrzHpYWv56OEoZGG0L1ny/VvtCzR/Q92MT+bI=";
|
|
};
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Collection of fancy functional tools focused on practicality";
|
|
homepage = "https://funcy.readthedocs.org/";
|
|
license = licenses.bsd3;
|
|
};
|
|
|
|
}
|