4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, lxml
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.0.1";
|
|
pname = "et_xmlfile";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256="0nrkhcb6jdrlb6pwkvd4rycw34y3s931hjf409ij9xkjsli9fkb1";
|
|
};
|
|
|
|
checkInputs = [ lxml pytest ];
|
|
checkPhase = ''
|
|
py.test $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An implementation of lxml.xmlfile for the standard library";
|
|
longDescription = ''
|
|
et_xmlfile is a low memory library for creating large XML files.
|
|
|
|
It is based upon the xmlfile module from lxml with the aim of
|
|
allowing code to be developed that will work with both
|
|
libraries. It was developed initially for the openpyxl project
|
|
but is now a standalone module.
|
|
|
|
The code was written by Elias Rabel as part of the Python
|
|
Düsseldorf openpyxl sprint in September 2014.
|
|
'';
|
|
homepage = "https://pypi.python.org/pypi/et_xmlfile";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sjourdois ];
|
|
};
|
|
|
|
}
|