about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/funcy/default.nix
blob: 96b12e631abf7dbf3280b12032407d1a3a69af62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "funcy";
  version = "1.15";

  src = fetchPypi {
    inherit pname version;
    sha256 = "65b746fed572b392d886810a98d56939c6e0d545abb750527a717c21ced21008";
  };

  # 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;
  };

}