Merge pull request #23038 from johbo/add-trytond-dependencies
Add trytond module dependencies
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
{ lib, fetchurl, buildPythonPackage }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "flake8-blind-except-${version}";
|
||||
version = "0.1.1";
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/f/flake8-blind-except/${name}.tar.gz";
|
||||
sha256 = "16g58mkr3fcn2vlfhp3rlahj93qswc7jd5qrqp748mc26dk3b8xc";
|
||||
};
|
||||
meta = {
|
||||
homepage = https://github.com/elijahandrews/flake8-blind-except;
|
||||
description = "A flake8 extension that checks for blind except: statements";
|
||||
maintainers = with lib.maintainers; [ johbo ];
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
18
pkgs/development/python-modules/flake8-debugger/default.nix
Normal file
18
pkgs/development/python-modules/flake8-debugger/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ lib, fetchurl, buildPythonPackage, flake8, nose }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "flake8-debugger-${version}";
|
||||
version = "1.4.0";
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/f/flake8-debugger/${name}.tar.gz";
|
||||
sha256 = "0chjfa6wvnqjnx778qzahhwvjx1j0rc8ax0ipp5bn70gf47lj62r";
|
||||
};
|
||||
buildInputs = [ nose ];
|
||||
propagatedBuildInputs = [ flake8 ];
|
||||
meta = {
|
||||
homepage = https://github.com/jbkahn/flake8-debugger;
|
||||
description = "ipdb/pdb statement checker plugin for flake8";
|
||||
maintainers = with lib.maintainers; [ johbo ];
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
18
pkgs/development/python-modules/python-stdnum/default.nix
Normal file
18
pkgs/development/python-modules/python-stdnum/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ lib, fetchurl, buildPythonPackage, isPy3k }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "python-stdnum-${version}";
|
||||
version = "1.5";
|
||||
# Failing tests and dependency issue on Py3k
|
||||
disabled = isPy3k;
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/p/python-stdnum/${name}.tar.gz";
|
||||
sha256 = "0zkkpjy4gc161dkyxjmingjw48glljlqqrl4fh2k5idf0frkvzhh";
|
||||
};
|
||||
meta = {
|
||||
homepage = "http://arthurdejong.org/python-stdnum/";
|
||||
description = "Python module to handle standardized numbers and codes";
|
||||
maintainers = with lib.maintainers; [ johbo ];
|
||||
license = lib.licenses.lgpl2Plus;
|
||||
};
|
||||
}
|
||||
17
pkgs/development/python-modules/pywebdav/default.nix
Normal file
17
pkgs/development/python-modules/pywebdav/default.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ lib, fetchurl, buildPythonPackage, isPy3k }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "PyWebDAV-${version}";
|
||||
version = "0.9.8";
|
||||
disabled = isPy3k;
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/p/pywebdav/${name}.tar.gz";
|
||||
sha256 = "1v10vg79h85milnq8w7yd75qq5z6297ywkn9b2kxajldzwqxn3ji";
|
||||
};
|
||||
meta = {
|
||||
homepage = http://code.google.com/p/pywebdav/;
|
||||
description = "WebDAV library including a standalone server for python";
|
||||
maintainers = with lib.maintainers; [ johbo ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
};
|
||||
}
|
||||
16
pkgs/development/python-modules/simpleeval/default.nix
Normal file
16
pkgs/development/python-modules/simpleeval/default.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ lib, fetchurl, buildPythonPackage }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "simpleeval-${version}";
|
||||
version = "0.9.5";
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/s/simpleeval/${name}.tar.gz";
|
||||
sha256 = "0sda13bqg9l4j17iczmfanxbzsg6fm9aw8i3crzsjfxx51rwj1i3";
|
||||
};
|
||||
meta = {
|
||||
homepage = "https://github.com/danthedeckie/simpleeval";
|
||||
description = "A simple, safe single expression evaluator library";
|
||||
maintainers = with lib.maintainers; [ johbo ];
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user