ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / funcy / default.nix
blob2a41d9955f3477447d0f8161806a0acfcdf82630
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "funcy";
8   version = "1.17";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "40b9b9a88141ae6a174df1a95861f2b82f2fdc17669080788b73a3ed9370e968";
13   };
15   # No tests
16   doCheck = false;
18   meta = with lib; {
19     description = "Collection of fancy functional tools focused on practicality";
20     homepage = "https://funcy.readthedocs.org/";
21     license = licenses.bsd3;
22   };