<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nixos/nixpkgs/pkgs/development/python-modules/matplotlib/default.nix, branch origin/structured-attrs</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<id>http://cgit.wugi.info/nixos/nixpkgs/atom?h=origin%2Fstructured-attrs</id>
<link rel='self' href='http://cgit.wugi.info/nixos/nixpkgs/atom?h=origin%2Fstructured-attrs'/>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/'/>
<updated>2021-04-20T19:47:48Z</updated>
<entry>
<title>python{2,3}Packages.matplotlib: remove pointless asserts</title>
<updated>2021-04-20T19:47:48Z</updated>
<author>
<name>Dmitry Kalinkin</name>
<email>dmitry.kalinkin@gmail.com</email>
</author>
<published>2021-04-11T05:39:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=72a1c0cbc46acbb1e5f2678373a19373de924ac3'/>
<id>urn:sha1:72a1c0cbc46acbb1e5f2678373a19373de924ac3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>python3Packages.matplotlib: 3.3.4 -&gt; 3.4.1</title>
<updated>2021-04-20T19:47:47Z</updated>
<author>
<name>Dmitry Kalinkin</name>
<email>dmitry.kalinkin@gmail.com</email>
</author>
<published>2021-04-10T09:18:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=e6d9e58289fa6b97f8b7f843d7be6e21f8a96fa2'/>
<id>urn:sha1:e6d9e58289fa6b97f8b7f843d7be6e21f8a96fa2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>python{2,3}Packages.matplotlib: use lib.generators.toINI to generate setup.cfg</title>
<updated>2021-04-20T19:47:47Z</updated>
<author>
<name>Dmitry Kalinkin</name>
<email>dmitry.kalinkin@gmail.com</email>
</author>
<published>2021-04-10T09:08:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=72cb0293675896fc52d29afcdb3d3cda33480bf5'/>
<id>urn:sha1:72cb0293675896fc52d29afcdb3d3cda33480bf5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>python3Packages.matplotlib: 3.3.3 -&gt; 3.3.4</title>
<updated>2021-02-26T10:01:49Z</updated>
<author>
<name>Frederik Rietdijk</name>
<email>fridh@fridh.nl</email>
</author>
<published>2021-02-20T09:09:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=dbcad7f7bba9585dfc14b019ddad676c410949a9'/>
<id>urn:sha1:dbcad7f7bba9585dfc14b019ddad676c410949a9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>pkgs/development/python-modules: stdenv.lib -&gt; lib</title>
<updated>2021-01-24T00:29:22Z</updated>
<author>
<name>Pavol Rusnak</name>
<email>pavol@rusnak.io</email>
</author>
<published>2021-01-24T00:29:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=a4bbfba80dbdccf7c3d3ac64fc7afa2494cf743a'/>
<id>urn:sha1:a4bbfba80dbdccf7c3d3ac64fc7afa2494cf743a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>treewide: pkgs.pkgconfig -&gt; pkgs.pkg-config, move pkgconfig to alias.nix</title>
<updated>2021-01-19T09:16:25Z</updated>
<author>
<name>Jonathan Ringer</name>
<email>jonringer117@gmail.com</email>
</author>
<published>2021-01-19T06:50:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=9bb3fccb5b55326cb3c2c507464a8a28d44d1730'/>
<id>urn:sha1:9bb3fccb5b55326cb3c2c507464a8a28d44d1730</id>
<content type='text'>
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
</content>
</entry>
<entry>
<title>treewide: with stdenv.lib; in meta -&gt; with lib;</title>
<updated>2021-01-11T09:38:22Z</updated>
<author>
<name>Profpatsch</name>
<email>mail@profpatsch.de</email>
</author>
<published>2021-01-11T07:54:33Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=4a7f99d55d299453a9c2397f90b33d1120669775'/>
<id>urn:sha1:4a7f99d55d299453a9c2397f90b33d1120669775</id>
<content type='text'>
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
</content>
</entry>
<entry>
<title>python3Packages.matplotlib: 3.3.2 -&gt; 3.3.3</title>
<updated>2020-12-01T13:44:14Z</updated>
<author>
<name>Frederik Rietdijk</name>
<email>fridh@fridh.nl</email>
</author>
<published>2020-11-29T14:04:33Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=2398277abfaa88c54abea15bf23e72baaac8c6aa'/>
<id>urn:sha1:2398277abfaa88c54abea15bf23e72baaac8c6aa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>python3Packages.matplotlib: 3.3.1 -&gt; 3.3.2</title>
<updated>2020-11-05T23:47:00Z</updated>
<author>
<name>Frederik Rietdijk</name>
<email>fridh@fridh.nl</email>
</author>
<published>2020-10-25T09:06:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=1fb6a293627588a7a7a2b476825bb895ea0794f5'/>
<id>urn:sha1:1fb6a293627588a7a7a2b476825bb895ea0794f5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>matplotlib: Disable LTO on darwin.</title>
<updated>2020-09-09T16:18:50Z</updated>
<author>
<name>Shea Levy</name>
<email>shea@shealevy.com</email>
</author>
<published>2020-09-09T16:18:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.wugi.info/nixos/nixpkgs/commit/?id=31579c6b0a643742d6ac6157d002de1e730a83cb'/>
<id>urn:sha1:31579c6b0a643742d6ac6157d002de1e730a83cb</id>
<content type='text'>
Needs #19312 or equivalent to work.
</content>
</entry>
</feed>
