Merge master into staging-next
This commit is contained in:
@@ -19,7 +19,7 @@ buildPythonPackage rec {
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = http://pygments.org/;
|
||||
homepage = https://pygments.org/;
|
||||
description = "A generic syntax highlighter";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
|
||||
@@ -6,11 +6,11 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "catalogue";
|
||||
version = "0.0.8";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "c407a51c22f51b0f938104b6396c489145bae234386e68eb1d56326c3b3e128e";
|
||||
sha256 = "0zha0gzqfkazc9da0cyjys5ghf20ihyhkgd1h5zxkxlf8zhz03s3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ importlib-metadata ];
|
||||
|
||||
32
pkgs/development/python-modules/junit-xml/default.nix
Normal file
32
pkgs/development/python-modules/junit-xml/default.nix
Normal file
@@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, six
|
||||
, pytest
|
||||
, pytest-sugar
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "junit-xml";
|
||||
version = "1.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "08fw86azza6d3l3nx34kq69cpwmmfqpn7xrb8pdlxmhr1941qbv0";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
checkInputs = [ pytest pytest-sugar ];
|
||||
|
||||
checkPhase = ''
|
||||
pytest
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Creates JUnit XML test result documents that can be read by tools such as Jenkins";
|
||||
homepage = https://github.com/kyrus/python-junit-xml;
|
||||
maintainers = with maintainers; [ multun ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
@@ -24,7 +24,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A pluggable command-line frontend, including commands to setup package file layouts";
|
||||
homepage = http://pythonpaste.org/script/;
|
||||
homepage = https://github.com/cdent/pastescript/;
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Parallel graph management and execution in heterogeneous computing";
|
||||
homepage = http://www.cacr.caltech.edu/~mmckerns/pathos.htm;
|
||||
homepage = https://github.com/uqfoundation/pathos/;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ buildPythonPackage rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://pivy.coin3d.org/;
|
||||
homepage = https://github.com/coin3d/pivy/;
|
||||
description = "A Python binding for Coin";
|
||||
license = licenses.bsd0;
|
||||
maintainers = with maintainers; [ gebner ];
|
||||
|
||||
@@ -15,7 +15,7 @@ buildPythonPackage rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Utilities for filesystem exploration and automated builds";
|
||||
license = licenses.bsd3;
|
||||
homepage = http://www.cacr.caltech.edu/~mmckerns/pox.htm;
|
||||
homepage = https://github.com/uqfoundation/pox/;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@ buildPythonPackage rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://pvlib-python.readthedocs.io;
|
||||
homepage = https://pvlib-python.readthedocs.io;
|
||||
description = "Simulate the performance of photovoltaic energy systems";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ jluttine ];
|
||||
|
||||
@@ -29,7 +29,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "pyenchant: Python bindings for the Enchant spellchecker";
|
||||
homepage = https://pythonhosted.org/pyenchant/;
|
||||
homepage = https://github.com/pyenchant/pyenchant;
|
||||
license = licenses.lgpl21;
|
||||
badPlatforms = [ "x86_64-darwin" ];
|
||||
};
|
||||
|
||||
@@ -20,7 +20,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = {
|
||||
description = "User-space driver for modern FTDI devices";
|
||||
homepage = "http://github.com/eblot/pyftdi";
|
||||
homepage = "https://github.com/eblot/pyftdi";
|
||||
license = lib.licenses.lgpl2;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@ buildPythonPackage rec {
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://pyparsing.wikispaces.com/;
|
||||
homepage = https://pyparsing.wikispaces.com/;
|
||||
description = "An alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions";
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
||||
@@ -17,7 +17,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A package which logs to a Python logger when an exception is raised by a Pyramid application";
|
||||
homepage = http://docs.pylonsproject.org/;
|
||||
homepage = https://docs.pylonsproject.org/;
|
||||
license = licenses.bsd0;
|
||||
maintainers = with maintainers; [ domenkozar ];
|
||||
};
|
||||
|
||||
@@ -39,7 +39,7 @@ buildPythonPackage rec {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://pysam.readthedocs.io/;
|
||||
homepage = https://pysam.readthedocs.io/;
|
||||
description = "A python module for reading, manipulating and writing genome data sets";
|
||||
maintainers = with lib.maintainers; [ unode ];
|
||||
license = lib.licenses.mit;
|
||||
|
||||
@@ -3,12 +3,14 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "python-sql";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "05ni936y0ia9xmryl7mlhbj9i80nnvq1bi4zxhb96rv7yvpb3fqb";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://python-sql.tryton.org/;
|
||||
homepage = https://python-sql.tryton.org/;
|
||||
description = "A library to write SQL queries in a pythonic way";
|
||||
maintainers = with lib.maintainers; [ johbo ];
|
||||
license = lib.licenses.bsd3;
|
||||
|
||||
@@ -20,7 +20,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Launch jobs, organize the output, and dissect the results";
|
||||
homepage = http://pyviz.org/;
|
||||
homepage = https://pyviz.org/;
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
|
||||
@@ -22,7 +22,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = {
|
||||
description = "Quantities is designed to handle arithmetic and";
|
||||
homepage = http://python-quantities.readthedocs.io/;
|
||||
homepage = https://python-quantities.readthedocs.io/;
|
||||
license = lib.licenses.bsd2;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,17 +3,20 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "relatorio";
|
||||
version = "0.9.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0q93sl7ppfvjxylgq9m5n4xdgv4af7d69yxd84zszq10vjmpsg6k";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
genshi
|
||||
lxml
|
||||
python_magic
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = http://relatorio.tryton.org/;
|
||||
homepage = https://relatorio.tryton.org/;
|
||||
description = "A templating library able to output odt and pdf files";
|
||||
maintainers = with lib.maintainers; [ johbo ];
|
||||
license = lib.licenses.gpl3;
|
||||
|
||||
@@ -12,7 +12,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Generic test automation framework";
|
||||
homepage = http://robotframework.org/;
|
||||
homepage = https://robotframework.org/;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ bjornfor ];
|
||||
};
|
||||
|
||||
@@ -35,7 +35,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = {
|
||||
description = "Image processing routines for SciPy";
|
||||
homepage = http://scikit-image.org;
|
||||
homepage = https://scikit-image.org;
|
||||
license = lib.licenses.bsd3;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pure Python HDFS client";
|
||||
homepage = http://github.com/spotify/snakebite;
|
||||
homepage = https://github.com/spotify/snakebite;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
|
||||
45
pkgs/development/python-modules/stups-fullstop/default.nix
Normal file
45
pkgs/development/python-modules/stups-fullstop/default.nix
Normal file
@@ -0,0 +1,45 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildPythonPackage
|
||||
, requests
|
||||
, stups-cli-support
|
||||
, stups-zign
|
||||
, pytest
|
||||
, pytestcov
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "stups-fullstop";
|
||||
version = "1.1.31";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zalando-stups";
|
||||
repo = "fullstop-cli";
|
||||
rev = version;
|
||||
sha256 = "1cpzz1b8g2mich7c1p74vfgw70vlxpgwi82a1ld82wv3srwqa0h3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
stups-cli-support
|
||||
stups-zign
|
||||
];
|
||||
|
||||
preCheck = "
|
||||
export HOME=$TEMPDIR
|
||||
";
|
||||
|
||||
checkInputs = [
|
||||
pytest
|
||||
pytestcov
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Convenience command line tool for fullstop. audit reporting.";
|
||||
homepage = "https://github.com/zalando-stups/stups-fullstop-cli";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.mschuwalow ];
|
||||
};
|
||||
}
|
||||
@@ -28,7 +28,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = {
|
||||
description = "A Python library for symbolic mathematics";
|
||||
homepage = http://www.sympy.org/;
|
||||
homepage = https://www.sympy.org/;
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ lovek323 timokau ];
|
||||
};
|
||||
|
||||
@@ -13,7 +13,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://chrisarndt.de/projects/threadpool/;
|
||||
homepage = https://chrisarndt.de/projects/threadpool/;
|
||||
description = "Easy to use object-oriented thread pool framework";
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
||||
@@ -14,7 +14,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = {
|
||||
description = "The official Todoist Python API library";
|
||||
homepage = http://todoist-python.readthedocs.io/en/latest/;
|
||||
homepage = https://todoist-python.readthedocs.io/en/latest/;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
||||
};
|
||||
|
||||
@@ -13,7 +13,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://pylonsproject.org/;
|
||||
homepage = https://pylonsproject.org/;
|
||||
description = "Utility library for i18n relied on by various Repoze and Pyramid packages";
|
||||
license = licenses.bsd0;
|
||||
maintainers = with maintainers; [ domenkozar ];
|
||||
|
||||
@@ -15,7 +15,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = {
|
||||
description = "Pure python download utility";
|
||||
homepage = http://bitbucket.org/techtonik/python-wget/;
|
||||
homepage = https://bitbucket.org/techtonik/python-wget/;
|
||||
license = with lib.licenses; [ unlicense ];
|
||||
maintainers = with lib.maintainers; [ prusnak ];
|
||||
};
|
||||
|
||||
@@ -16,7 +16,7 @@ buildPythonPackage rec {
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib;{
|
||||
homepage = http://getbootstrap.com;
|
||||
homepage = https://getbootstrap.com;
|
||||
description = "Bootstrap packaged static files for python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ makefu ];
|
||||
|
||||
@@ -16,7 +16,7 @@ buildPythonPackage rec {
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib;{
|
||||
homepage = http://pygments.org;
|
||||
homepage = https://pygments.org;
|
||||
description = "pygments packaged static files for python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ makefu ];
|
||||
|
||||
@@ -12,6 +12,6 @@ buildPythonPackage rec {
|
||||
meta = with lib; {
|
||||
description = "Generate HTML or XML in a pythonic way. Pure python alternative to web template engines. Can fill HTML forms with default values and error messages.";
|
||||
license = [ licenses.lgpl21 ];
|
||||
homepage = http://www.yattag.org/;
|
||||
homepage = https://www.yattag.org/;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ buildPythonPackage rec {
|
||||
propagatedBuildInputs = [ zope_schema ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://zopefilerepresentation.readthedocs.io/;
|
||||
homepage = https://zopefilerepresentation.readthedocs.io/;
|
||||
description = "File-system Representation Interfaces";
|
||||
license = licenses.zpl20;
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
|
||||
Reference in New Issue
Block a user