mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
25 lines
464 B
Nix
25 lines
464 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "funcy";
|
|
version = "1.15";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "65b746fed572b392d886810a98d56939c6e0d545abb750527a717c21ced21008";
|
|
};
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Collection of fancy functional tools focused on practicality";
|
|
homepage = "https://funcy.readthedocs.org/";
|
|
license = licenses.bsd3;
|
|
};
|
|
|
|
}
|