Revert "Merge staging at '8d490ca9934d0' into master"

This reverts commit fc23242220, reversing
changes made to 754816b84b.
We don't have many binaries yet.  Comment on the original merge commit.
This commit is contained in:
Vladimír Čunát
2018-02-26 22:53:18 +01:00
parent b8f4df9d9e
commit f5ce8f86df
33 changed files with 267 additions and 389 deletions

View File

@@ -1,9 +1,12 @@
{ lib
, buildPythonPackage
, pythonOlder
, isPy35
, isPy36
, fetchPypi
, hypothesis
, pytestcache
, pytestcov
, pytestflakes
, pytestpep8
, pytest
@@ -16,9 +19,10 @@ buildPythonPackage rec {
pname = "natsort";
version = "5.2.0";
checkInputs = [
buildInputs = [
hypothesis
pytestcache
pytestcov
pytestflakes
pytestpep8
pytest
@@ -37,7 +41,7 @@ buildPythonPackage rec {
# testing based on project's tox.ini
checkPhase = ''
pytest --doctest-modules natsort
pytest --flakes --pep8
pytest --flakes --pep8 --cov natsort --cov-report term-missing
'';
meta = {