Skip to content

Commit

Permalink
pythonPackages.transitions: 0.8.5 -> 0.8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda committed Jan 22, 2021
1 parent 588643a commit 3677e26
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions pkgs/development/python-modules/transitions/default.nix
Original file line number Diff line number Diff line change
@@ -1,26 +1,21 @@
{ lib, stdenv, buildPythonPackage, fetchPypi
, six, nose, mock, dill, pycodestyle }:
{ lib, buildPythonPackage, fetchFromGitHub
, six, pytestCheckHook, mock, dill, pycodestyle }:

buildPythonPackage rec {
pname = "transitions";
version = "0.8.5";
version = "0.8.6";

src = fetchPypi {
inherit pname version;
sha256 = "e441c66a0c753d56c01c3e5e547f21dbe4a5569c939f12477475c5e81d79769b";
# test_codestyle.py fails in PyPI sdist
src = fetchFromGitHub {
owner = "pytransitions";
repo = "transitions";
rev = version;
sha256 = "1d913hzzyqhdhhbkbvjw65dqkajrw50a4sxhyxk0jlg8pcs7bs7v";
};

postPatch = ''
substituteInPlace setup.py --replace "dill<0.2.7" dill
'';

propagatedBuildInputs = [ six ];

checkInputs = [ nose mock dill pycodestyle ];

checkPhase = ''
nosetests
'';
checkInputs = [ pytestCheckHook mock dill pycodestyle ];

meta = with lib; {
homepage = "https://github.com/pytransitions/transitions";
Expand Down

0 comments on commit 3677e26

Please sign in to comment.