summary refs log tree commit diff
path: root/pkgs/development/python-modules/vine/default.nix
blob: 048fa435e0bed21eb09cf600141c7584439f0812 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv, buildPythonPackage, fetchPypi
, case, pytest, pythonOlder }:

buildPythonPackage rec {
  pname = "vine";
  version = "5.0.0";

  disable = pythonOlder "2.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7d3b1624a953da82ef63462013bbd271d3eb75751489f9807598e8f340bd637e";
  };

  buildInputs = [ case pytest ];

  meta = with lib; {
    description = "Python promises";
    homepage = "https://github.com/celery/vine";
    license = licenses.bsd3;
  };
}