nixpkgs/pkgs/development/python-modules/vine/default.nix
R. RyanTM 7d6f7ec569 python37Packages.vine: 1.1.4 -> 1.2.0 (#54065)
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
2019-01-16 17:11:58 +01:00

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