summary refs log tree commit diff
path: root/pkgs/development/python-modules/vine/default.nix
blob: 85b17f5119ca2c1759e62ab2c69f5dbb81d495cc (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
{ stdenv, buildPythonPackage, fetchPypi
, case, pytest, pythonOlder }:

buildPythonPackage rec {
  pname = "vine";
  version = "1.1.3";
  name = "${pname}-${version}";

  disable = pythonOlder "2.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0h94x9mc9bspg23lb1f73h7smdzc39ps7z7sm0q38ds9jahmvfc7";
  };

  buildInputs = [ case pytest ];

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