The solution
The conda-forge organization was created with to be a transparent, open, community led organization, to build conda packages and, hopefully, provide a stable source for packages while reducing the effort duplication and recipe fragmentation.
While developed to meet the unique needs of scientific software developers, it is a system that brings features and utilities for the broader developer community.
Maintaining recipes in the feedstock
{% set version = "1.0" %}
package:
name: example
version: {{ version }}
source:
fn: example-{{ version }}.tar.gz
url: https://pypi.python.org/example-{{ version }}.tar.gz
md5: 842b44f8c95517ed5b792081a2370da1
patches:
- some.patch
build:
number: 0
.
.
.