summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pytomlpp
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pytomlpp')
-rw-r--r--pkgs/development/python-modules/pytomlpp/default.nix53
1 files changed, 53 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytomlpp/default.nix b/pkgs/development/python-modules/pytomlpp/default.nix
new file mode 100644
index 000000000000..19edd7057eb4
--- /dev/null
+++ b/pkgs/development/python-modules/pytomlpp/default.nix
@@ -0,0 +1,53 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pythonOlder
+, pybind11
+, pytestCheckHook
+, dateutil
+, doxygen
+, python
+, pelican
+, matplotlib
+}:
+
+buildPythonPackage rec {
+ pname = "pytomlpp";
+ version = "0.3.5";
+
+ src = fetchFromGitHub {
+ owner = "bobfang1992";
+ repo = pname;
+ rev = version;
+ fetchSubmodules = true;
+ sha256 = "1h06a2r0f5q4mml485113mn7a7585zmhqsk2p1apcybyydllcqda";
+ };
+
+ buildInputs = [ pybind11 ];
+
+ checkInputs = [
+ pytestCheckHook
+
+ dateutil
+ doxygen
+ python
+ pelican
+ matplotlib
+ ];
+
+ # pelican requires > 2.7
+ doCheck = !pythonOlder "3.6";
+
+ preCheck = ''
+ cd tests
+ '';
+
+ pythonImportsCheck = [ "pytomlpp" ];
+
+ meta = with lib; {
+ description = "A python wrapper for tomlplusplus";
+ homepage = "https://github.com/bobfang1992/pytomlpp";
+ license = licenses.mit;
+ maintainers = with maintainers; [ evils ];
+ };
+}