mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
5d6b38f22b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-pyshp/versions
21 lines
477 B
Nix
21 lines
477 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, setuptools }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "2.0.1";
|
|
pname = "pyshp";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "049xj760s75nkvs7rhz710a6x3lvvfajddknmfz1vkf2p3f2l2as";
|
|
};
|
|
|
|
buildInputs = [ setuptools ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Pure Python read/write support for ESRI Shapefile format";
|
|
homepage = https://github.com/GeospatialPython/pyshp;
|
|
license = licenses.mit;
|
|
};
|
|
}
|