python3Packages.agate-sql: 0.5.5 -> 0.5.6
This commit is contained in:
parent
891d560b21
commit
2758f7bb1e
@ -1,15 +1,34 @@
|
|||||||
{ lib, fetchPypi, buildPythonPackage, agate, sqlalchemy, crate }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, isPy27
|
||||||
|
, fetchFromGitHub
|
||||||
|
, agate
|
||||||
|
, sqlalchemy
|
||||||
|
, crate
|
||||||
|
, nose
|
||||||
|
, geojson
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "agate-sql";
|
pname = "agate-sql";
|
||||||
version = "0.5.5";
|
version = "0.5.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
disabled = isPy27;
|
||||||
inherit pname version;
|
|
||||||
sha256 = "50a39754babef6cd0d1b1e75763324a49593394fe46ab1ea9546791b5e6b69a7";
|
src = fetchFromGitHub {
|
||||||
|
owner = "wireservice";
|
||||||
|
repo = "agate-sql";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "16rijcnvxrvw9mmyk4228dalrr2qb74y649g1l6qifiabx5ij78s";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ agate sqlalchemy crate ];
|
propagatedBuildInputs = [ agate sqlalchemy ];
|
||||||
|
|
||||||
|
checkInputs = [ crate nose geojson ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
nosetests
|
||||||
|
'';
|
||||||
|
|
||||||
pythonImportsCheck = [ "agatesql" ];
|
pythonImportsCheck = [ "agatesql" ];
|
||||||
|
|
||||||
@ -18,7 +37,5 @@ buildPythonPackage rec {
|
|||||||
homepage = "https://github.com/wireservice/agate-sql";
|
homepage = "https://github.com/wireservice/agate-sql";
|
||||||
license = with licenses; [ mit ];
|
license = with licenses; [ mit ];
|
||||||
maintainers = with maintainers; [ vrthra ];
|
maintainers = with maintainers; [ vrthra ];
|
||||||
# FAIL: test_to_sql_create_statement_with_schema (tests.test_agatesql.TestSQL)
|
|
||||||
broken = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user