My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/funcy/default.nix

24 lines
464 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "funcy";
version = "1.17";
src = fetchPypi {
inherit pname version;
sha256 = "40b9b9a88141ae6a174df1a95861f2b82f2fdc17669080788b73a3ed9370e968";
};
# No tests
doCheck = false;
meta = with lib; {
description = "Collection of fancy functional tools focused on practicality";
homepage = "https://funcy.readthedocs.org/";
license = licenses.bsd3;
};
}