mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
34 lines
795 B
Nix
34 lines
795 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "py3to2";
|
|
version = "1.1.1";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "3to2";
|
|
extension = "zip";
|
|
sha256 = "fef50b2b881ef743f269946e1090b77567b71bb9a9ce64b7f8e699b562ff685c";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
|
py.test lib3to2/tests
|
|
'';
|
|
|
|
# Test failing due to upstream issue (https://bitbucket.org/amentajo/lib3to2/issues/50/testsuite-fails-with-new-python-35)
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = "https://bitbucket.org/amentajo/lib3to2";
|
|
description = "Refactors valid 3.x syntax into valid 2.x syntax, if a syntactical conversion is possible";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ mt-caret ];
|
|
};
|
|
}
|