mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
e5402c6c75
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-rope/versions (cherry picked from commit e03fff5cf03d015324b5ac9d16ef5dcbd6d29bdf)
25 lines
640 B
Nix
25 lines
640 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, nose }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rope";
|
|
version = "0.14.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1bwayj0hh459s3yh0sdrxksr9wfilgi3a49izfaj06kvgyladif5";
|
|
};
|
|
|
|
checkInputs = [ nose ];
|
|
checkPhase = ''
|
|
# tracked upstream here https://github.com/python-rope/rope/issues/247
|
|
NOSE_IGNORE_FILES=type_hinting_test.py nosetests ropetest
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Python refactoring library";
|
|
homepage = https://github.com/python-rope/rope;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|