ruamel: moved from bitbucket to sourceforge

This commit is contained in:
Dylan Simon 2020-02-17 20:27:01 -05:00 committed by Jon
parent d6a81e905b
commit c3b5bdaba0
3 changed files with 6 additions and 7 deletions

View file

@ -14,7 +14,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "Common routines for ruamel packages";
homepage = https://bitbucket.org/ruamel/base;
homepage = https://sourceforge.net/projects/ruamel-base/;
license = licenses.mit;
};

View file

@ -33,7 +33,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order";
homepage = https://bitbucket.org/ruamel/yaml;
homepage = https://sourceforge.net/projects/ruamel-yaml/;
license = licenses.mit;
};

View file

@ -1,6 +1,6 @@
{ stdenv
, buildPythonPackage
, fetchFromBitbucket
, fetchhg
, ruamel_base
, ruamel_ordereddict
, isPy3k
@ -10,9 +10,8 @@ buildPythonPackage rec {
pname = "ruamel.yaml.clib";
version = "0.2.0";
src = fetchFromBitbucket {
owner = "ruamel";
repo = "yaml.clib";
src = fetchhg {
url = "http://hg.code.sf.net/p/ruamel-yaml-clib/code";
rev = version;
sha256 = "0kq6zi96qlm72lzj90fc2rfk6nm5kqhk6qxdl8wl9s3a42b0v6wl";
};
@ -22,7 +21,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order";
homepage = https://bitbucket.org/ruamel/yaml;
homepage = https://sourceforge.net/projects/ruamel-yaml-clib/;
license = licenses.mit;
};