summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/geomet/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/geomet/default.nix')
-rw-r--r--pkgs/development/python-modules/geomet/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/geomet/default.nix b/pkgs/development/python-modules/geomet/default.nix
new file mode 100644
index 000000000000..a4df450098df
--- /dev/null
+++ b/pkgs/development/python-modules/geomet/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, fetchpatch
+, click
+, six
+}:
+
+buildPythonPackage rec {
+ pname = "geomet";
+ version = "0.2.1";
+
+ # pypi tarball doesn't include tests
+ src = fetchFromGitHub {
+ owner = "geomet";
+ repo = "geomet";
+ rev = version;
+ sha256 = "0fdi26glsmrsyqk86rnsfcqw79svn2b0ikdv89pq98ihrpwhn85y";
+ };
+
+ patches = [
+ (fetchpatch {
+ name = "python-3.8-support.patch";
+ url = "https://github.com/geomet/geomet/commit/dc4cb4a856d3ad814b57b4b7487d86d9e0f0fad4.patch";
+ sha256 = "1f1cdfqyp3z01jdjvax77219l3gc75glywqrisqpd2k0m0g7fwh3";
+ })
+ ];
+
+ propagatedBuildInputs = [ click six ];
+
+ meta = with lib; {
+ homepage = "https://github.com/geomet/geomet";
+ license = licenses.asl20;
+ description = "Convert GeoJSON to WKT/WKB (Well-Known Text/Binary), and vice versa.";
+ maintainers = with maintainers; [ turion ris ];
+ };
+}