b189247ba0
Uses the HTTPS url for cases where the existing URL has a permanent redirect. For each domain, at least one fixed derivation URL was downloaded to test the domain is properly serving downloads. Also fixes jbake source URL, which was broken.
24 lines
555 B
Nix
24 lines
555 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, logilab_common, six }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "logilab-constraint";
|
|
version = "0.6.0";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1n0xim4ij1n4yvyqqvyc0wllhjs22szglsd5av0j8k2qmck4njcg";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
logilab_common six
|
|
];
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "logilab-database provides some classes to make unified access to different";
|
|
homepage = "https://www.logilab.org/project/logilab-database";
|
|
};
|
|
}
|
|
|