mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
b77722d989
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-detox/versions
28 lines
561 B
Nix
28 lines
561 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, pytest, tox, py, eventlet }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "detox";
|
|
version = "0.18";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1yvfhnkw6zpm11yrl2shl794yi68jcfqj8m5n596gqxxbiq6gp90";
|
|
};
|
|
|
|
buildInputs = [ pytest ];
|
|
propagatedBuildInputs = [ tox py eventlet ];
|
|
|
|
checkPhase = ''
|
|
py.test
|
|
'';
|
|
|
|
# eventlet timeout, and broken invokation 3.5
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "What is detox?";
|
|
homepage = https://bitbucket.org/hpk42/detox;
|
|
};
|
|
}
|