nixpkgs/pkgs/development/python-modules/funcy/default.nix
R. RyanTM a8cc90c3e0 python37Packages.funcy: 1.11 -> 1.12
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-funcy/versions
2019-05-01 21:43:32 -07:00

25 lines
462 B
Nix

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