7d6f7ec569
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-vine/versions
23 lines
473 B
Nix
23 lines
473 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, case, pytest, pythonOlder }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "vine";
|
|
version = "1.2.0";
|
|
|
|
disable = pythonOlder "2.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0xjz2sjbr5jrpjk411b7alkghdskhphgsqqrbi7abqfh2pli6j7f";
|
|
};
|
|
|
|
buildInputs = [ case pytest ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Python promises";
|
|
homepage = https://github.com/celery/vine;
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|